
Mount ISO image in linux
An ISO image is an archive file also known as disk image of an optical disc using a conventional ISO (International Standardization Organization) format. To mount an ISO image is to have access to the content of this file like if the cd was in your computer.How to mount an ISO image step by step
To mount an image you have to be root. So depending on your distribution enter firstly ONE of the following command:sudo su #or su - #or su
mkdir -p /mnt/iso
mount -o loop /path/to/isoImage.iso /mnt/iso
Your ISO image is now accessible in '/mnt/iso' as if the cd was in your computer.