Article Title: mounting ISO files in Ubuntu. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.
An ISO image is a cd or DVD image file that can be stored on your computer and written into a new cd. It is very easy to mount and use it in UBUNTU.
User Guide
In linux, the default ISO mount point is located in the "/media" directory. The following describes how to mount an ISO file:
Sudo mkdir/media/cdimage # create a folder as an ISO mount point
Sudo mount-o loop myfile. iso/media/cdimage # mount the ISO file and use the-o loop parameter.
Replace myfile. iso with the iso file you want to mount.
Mount an image file to make it writable. Run the following command:
Sudo mkdir/media/cdimage
Sudo mount-o rw, loop myfile. iso/media/cdimage
Detach an image file:
Sudo umount/media/cdimage
Rmdir/media/cdimage
Other formats
Other CD and DVD image files can be converted to ISO files for mounting.
* The Nero image (. nrg) file can be converted to an ISO file using nrg2iso, or mounted using mount.
O mount with mount:
Sudo mkdir/media/cdimage
Sudo mount-o loop, offset = 307200 myfile. nrg/media/cdimage
O install nrg2iso:
Sudo apt-get install nrg2iso
O use nrg2iso to convert to an iso file:
Nrg2iso myfile. nrg myfile. iso
* The Cue/Bin image (. cue/. bin) must be converted before it can be used. You can use bchunk to convert it.
O install bchunk:
Sudo apt-get install bchunk
O use bchunk conversion:
Bchunk myfile. bin myfile. cue myfile
* Clone CD (. ccd /. img /. sub) files must be converted. this can be done using ccd2iso. the package for this program is extremely unstable and has been taken from the Ubuntu forums http://www.ubuntuforums.org. it is also only packaged for Pentium (i386) systems. you can also compile from the source using the guide on ManageDiscImages.
The cloned CD (. ccd/. img/. sub) file must be converted for use. You can use ccd2iso for conversion. The software installation package is included in extremely unstable (unstable version) and used by ubuntu Forum (http://www.ubuntuforums.org. It is also the only software package for Pentium (i386) systems. You can also refer to the Guide on the ManageDiscImages help page to use the source code to compile the software.
O download and install ccd2iso,: http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb
O install the software:
Sudo dpkg-I ccd2iso_0.2-0.1_i386.deb
O conversion using ccd2iso:
Ccd2iso myfile. img myfile. iso
* The Alcohol 120% image (. mdf) file can be converted to an ISO file using mdf2iso or mounted using mount.
O mount with mount:
Sudo mkdir/media/cdimage
Sudo mount-o loop =/dev/loop0 myfile. iso/media/cdimage
O install mdf2iso:
Sudo apt-get install mdf2iso
O use mdf2iso conversion:
Mdf2iso myfile. mdf myfile. iso
* For other image format file problems, refer to the Help Page ManageDiscImages.
Other options
Cdemu is a kernel module that directly mounts Cue/binfiles. install linux-headers first, compile and mount the module. this is beyond the scope of the discussion on this page. there is an automatically compiled script in the Ubuntu Forum.
Http://www.ubuntuforums.org/showthread.php? T = 149963. (at your own risk)
"How to mount and detach an ISO file without burning it" is a good guide with tutorials to show you how to mount and detach an ISO file image.