Wednesday, May 20, 2009

Mounting An ISO Image

From the command line:
# su -
# mount -t iso9660 -o loop disk1.iso /mnt/disk

Automatically at boot, in /etc/fstab:
/path/to/disk1.iso /mnt/disk iso9660 user,loop 0 0

The directory /mnt/disk needs to already exist for both methods.