If u want to use a CD or DVD image (*.iso files) then u wont need an additional software in linux as on windows you just need to mount that image file to some directory, which can be done simply by executing the following command –>
mount -t iso9660 path_to_iso.iso path_to_mount_directory -o loop
example –>
mount -t iso9660 /tmp/game.iso /root/game -o loop
Here ->
1.mount is the command.
2.”-t” is option for specifying file system type.
3. “iso9660″ is the file system type for iso image.
4. “/tmp/game.iso” isthe path for the iso file to be mounted.
5. “/root/game” is the directory where the iso file has to be mounted.

