PDA

View Full Version : TLC #15: [How to mount an iso file system]


X-Calibur
16th March 2005, 10:41
To save some space on my desk, I'm in the process of archiving the too many CDs I have that I just keep around "just in case". From drivers to software. Then archiving them as ISO on DVD.

See the other TLCs for creating the iso (really simple with the dd command.

Now, let's say you need one of the disks.


$ sudo mkdir /mnt/iso
$ sudo mount -o loop -t iso9660 /path/to/filename.iso /mnt/iso


Nice and dirty.

X-Calibur