[Solaris] монтировка iso образов

Модератор: padonki

Ответить
Аватара пользователя
The ustas
Сообщения: 58
Зарегистрирован: 15 ноя 2006, 19:41
Откуда: msk
Контактная информация:

[Solaris] монтировка iso образов

Сообщение The ustas »

Given an ISO image in /export/temp/software.iso, a loopback file device (/dev/lofi/1) is created with the following command:

Код: Выделить всё

lofiadm -a /export/temp/software.iso /dev/lofi/1
The lofi device creates a block device version of a file. This block device can be mounted to /mnt with the following command:

Код: Выделить всё

mount -F hsfs -o ro /dev/lofi/1 /mnt
These commands can be combined into a single command:

Код: Выделить всё

mount -F hsfs -o ro `lofiadm -a /export/temp/software.iso` /mnt
Изображение
Изображение
Изображение
Изображение
Изображение
Ответить