How to mount an ISO image in Linux
This article will explain how to mount an ISO image quickly and easily on Linux without downloading any additional software. If you are on a Windows operating system, check out the article: How to mount an ISO on Windows XP and Windows Vista
- Login as the root user (if you are not root, then switch to root user by using the command)
- Create the directory for which you will use to access the mounted ISO image
- Mount the ISO using the following command:
- Thats it! You may now start using the image by changing into the /mnt/iso directory
su -
mkdir -p /mnt/iso
mount -o loop myiso.iso /mnt/iso
Note: Be sure to change myiso.iso to the path and filename of your image