How to mount an ISO image in linux

  1. Become root.
  2. # mkdir -p /mnt/iso
  3. # mount -t iso9660 -o loop /root/Download/LinuxIC-4.1.3.iso /mnt/iso/

Change directory to /mnt/iso and browse the image.

Source: http://www.tecmint.com/how-to-mount-and-unmount-an-iso-image-in-linux/

Hits: 527