In linux its easy to mount the iso image with single command like
1) You must login as a root user, if not root user then switch to root user using following command:
$ su -
2) Create the directory aka mount point:
# mkdir -p /mnt/disk
3) Use mount command as follows (assumes that your ISO file name is disk1.iso):
# mount -o loop disk1.iso /mnt/disk
4) Change directory to list it:
# cd /mnt/disk
# ls -l
To Unmount
#umount /mnt/disk
Saturday, May 3, 2008
Subscribe to:
Post Comments (Atom)

No comments:
Post a Comment