An ISO image is an archive file (disk image) of an optical disc using a conventional ISO (International Organization for Standardization) format. ISO image files typically have a file extension of .ISO.
Many times is convenient to mount an ISO file directly instead of burning it to a CD first. Not only does this save on wasted CDs/DVDs, but allows much faster access to the ISO since it is on the hard disk itself.
Create the directory or mount point for the ISO.
$ sudo mkdir -p /mnt/disk
Use the mount command to mount the ISO
$ sudo mount -o loop disk_image.iso /mnt/disk
A loop device is a pseudo-device that makes a file accessible as a block device. You can now access the files within the ISO as you would a normal disk at the mount point ‘/mnt/disk’.