How to: Mount an ISO image under Linux
May 15th, 2010
No comments
Procedure to mount ISO images under Linux
1) You must login as a root user
2) Create the directory i.e. mount point:
# mkdir -p /mnt/temp_disk1
3) Use mount command to mount iso file called disk1.iso with loop option:
# mount -o loop disk1.iso /mnt/temp_disk1
Now you should be able to access all the files on that ISO image. Please note, you have to provide full path to iso image, not just iso image alone.
Powered by Yahoo! Answers