Mount ISO images without burning them in Ubuntu
This post was written by admin on May 31, 2009
Posted Under: General
Posted Under: General
For various reasons,you may want to use ISO images without burning them,and you just need to mount them in a easy way.
First,create a directory which you want to mount ISO images to by running following command in terminal:
sudo mkdir /media/ISOimage
Then,add the loop module to your kernel,so it is possible to mount a compressed filesystem file:
sudo modprobe loopNow,use following command to mount ISO image:
sudo mount ubuntu-9.04-desktop-amd64.iso /media/ISOimage/ -t iso9660 -o loop
replace “ubuntu-9.04-desktop-amd64.iso”to your ISO image.
And,use the command to umount ISO image:
sudo umount /media/ISOimage
In following screen,I mounted a ISO image from a ntfs drive:

Go to /media/ISOimage,available contents in mounted ISO image will be present to you.

Related posts:
- How to mount a partition(ntfs,fat32,.iso,and so on) in ubuntu
- Gmount-iso,small GUI tool to mount CD/DVD image iso
- Auto mount ntfs drive when login your ubuntu
- Download Multiple files using wget command
- How to install Ubuntu from USB drive
Tags: mount

Reader Comments
I just download WinXP .iso file,and how can I install it in ubuntu?
[Reply]