How to mount an iso file?

Post date: 19-Jan-2009 13:40:57

In order to mount an iso file one first must create a point to mount it (jump this step if the point already exists)

[> sudo mkdir /media/iso

Then, just mount the file by writting

[> sudo mount -t iso9660 isofilename /media/iso -o loop

and when you finish of usung it type
[> sudo umount /media/iso
Enjoy.