How to mount an ISO image on Linux?
With Linux you can easily mount an ISO image as any storage device. To mount an ISO image, it sufit the device mounted as local loop (loopback), provided they have this option compiled into the kernel (in the Block devices, the Loopback device support option must be enabled, c is the case with most distributions).
Then just mount the image in the following manner:
mount -o loop -t iso9660 fichier.iso /mnt/iso