mount iso
On Solaris
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
On Linux
mount -t iso9660 -o ro,loop /export/temp/software.iso /mnt
page revision: 1, last edited: 07 May 2009 21:00