First of we have to locate where we put our ISO.
# find /root -name Centos*
As soon as we locate the ISO, we'll go to that directory.
# cd /root/Desktop/We then create the isoimage directory inside the /mnt directory:
# mkdir /mnt/isoimageAfter creating the isoimage directory, mount the centos ISO in the /mnt/isoimage directory:
# mount -o loop -t iso9660 Centos\ 5.8.iso /mnt/isoimage/Your ISO has now been mounted in your directory. To view, go to /mnt/isoimage then type ls to see what's inside your isoimage directory.
After you're done just unmount the /mnt/isoimage directory
# umount /mnt/isoimage

No comments:
Post a Comment