Linux: How to mount iso image file

advertisement

how to mount iso image, linux, linux mount iso image, linux mount isoThese few days i’m playing around with Xen Hypervisors. Downloaded CentOS 5 iso image, Fedora 7 iso image and Debian iso image. So to avoid wasting too much CD to burn these image, linux provide a way to mount these iso image file and let you access the files in the iso image instantly.

Below is the way to mount iso image file:-

  • Before you start to mount your iso image, you need to ensure the folder /mnt/isoimage is available, if /mnt/isoimage is not available just create one using command below:-

    #mkdir /mnt/isoimage

  • Once isoimage directory is available, you can use the command below to mount your iso image
    # mount -o loop -t iso9660 centos-5.0.iso /mnt/isoimage/

  • You just mount your iso image file to /mnt/isoimage successfully. To access your iso image files, go to /mnt/isoimage

Once you finish using your files, below is the way to unmount your iso image:-

# umount /mnt/isoimage

Happy mounting!

Technorati Tags: , , , , , , , , , , ,

Tags: , , , , , , ,


Posted at August 27th, 2007 by chua

If you think this article helps you to solve your problem and clear your headache, feel free to buy me a drink :)


One Response to “Linux: How to mount iso image file”

  1. nimafire Says:

    its good for me to start managing my server.
    TNX

Leave a Reply