You can mount an ISO images via the loop device under Linux. It is possible to specify transfer functions (for encryption/decryption or other purposes) using loop device.

But, how do you mount an ISO image under Linux? To mount the ISO image file.iso to the mount point /mnt/test use this command:

Code:
mount -o loop -t iso9660 file.iso /mnt/test