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 loop
Now,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
- Manage CD and DVD images in Ubuntu using AcetoneISO
- Mounty – Indicator Applet to mount/burn CD/DVD/ISO images in Ubuntu
- Furius-iso-mount, GUI for Mounting ISO, IMG, BIN, MDF and NRG in Ubuntu
- Install Vmware Tools on Ubuntu 10.04
Tags: mount

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