Diff for "MountIso"


Differences between revisions 1 and 19 (spanning 18 versions)
Revision 1 as of 2006-07-14 09:12:37
Size: 1990
Editor: cpc1-cowc1-0-0-cust306
Comment:
Revision 19 as of 2008-07-24 17:11:12
Size: 4240
Editor: localhost
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;">'''Contents'''[[BR]][[TableOfContents(2)]]|| ||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;"><<TableOfContents(2)>>||
Line 7: Line 7:
An iso image is an image of a CD or DVD disk that can be stored on your computer and used to write to a new disk. It is a simple process to mount an iso image under Ubuntu. An IsoImage is an image of a CD or DVD disk that can be stored on your computer and used to write to a new disk.  It is also possible to mount an IsoImage to your disk, removing the need of a CD.
Line 9: Line 9:
== Instructions == == GUI ==
Line 11: Line 11:
The default mount point under linux is under ''/media''. To create a mount point here do the following: gISOMount is a utility for mounting and managing .iso images with the added capabilities of calculating md5sums, and reading various volume information. It can be downloaded through Synaptic Package Manager
Line 13: Line 13:
{{{ == Command Line ==

The default [[http://en.wikipedia.org/wiki/Mount_point|mount point]] under GNU/Linux is under ''/media''.

'''To mount an iso file to this location:'''

 {{{
Line 15: Line 21:
sudo mount -o loop myfile.iso /media/cdimage sudo mount -o loop ''myfile''.iso /media/cdimage
Line 18: Line 24:
Where myfile.iso is replaced with the file you want to mount. '''Note''': ''myfile''.iso is to be replaced with the file you want to mount.
This will mount the ISO image to the directory ''/media/cdimage''.
Line 20: Line 27:
To mount the image so that it can be written to do the following instead:
Line 22: Line 28:
{{{
sudo mkdir /media/cdimage
sudo mount -o rw,loop myfile.iso /media/cdimage
##I do not understand what this is supposed to do, and therefore I am temporarily hiding this until the function of this is specified better.
##To mount the image so that it can be written to do the following instead:

## {{{
##sudo mkdir /media/cdimage
##sudo mount -o rw,loop myfile.iso /media/cdimage
##}}}

'''To unmount the image:'''

 {{{
sudo umount /media/cdimage
rmdir /media/cdimage
}}}
##What does this have to do with Mounting an ISO?
== Convert Other Formats To ISO ==

Other formats of CD or DVD images can be converted to ISO and then mounted as above.


 * .img files can be converted to .iso using '''ccd2iso'''.
 {{{
 ccd2iso imagen.img imagen.iso
Line 27: Line 53:
To unmount the image do this:  * Nero image (.nrg) files can either be converted to iso using '''nrg2iso''' or mounted directly using '''mount'''.
Line 29: Line 55:
{{{
sudo umount /media/cdimage
rm -R /media/cdimage
  * To mount using '''mount''': {{{
sudo mkdir /media/cdimage
sudo mount -o loop,offset=307200 myfile.nrg /media/cdimage
Line 33: Line 59:

== Other Formats ==

Other formats of CD or DVD images can be converted to iso and then mounted as above.


 * Nero image (.nrg) files

Nero image files can either be converted to iso using '''nrg2iso''' or mounted directly using '''mount'''.

To mount using '''mount''':

{{{
sudo mkdir /media/cdimage
sudo mount -o loop,offset=307200 myfile.iso /media/cdimage
}}}

To install '''nrg2iso''':

{{{
  * To install '''nrg2iso''': {{{
Line 55: Line 62:

To convert to iso using '''nrg2iso''':

{{{
  * To convert to iso using '''nrg2iso''': {{{
Line 62: Line 66:
 * Cue/Bin image (.cue/.bin) files must be converted. This can be done using '''bchunk'''.
  * To install '''bchunk''': {{{
sudo apt-get install bchunk
}}}
  * To convert to iso using '''bchunk''': {{{
bchunk myfile.bin myfile.cue myfile
}}}
Line 63: Line 74:
 * Alcohol 120% image (.mdf) files  * 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.
  * To install '''ccd2iso''' download the package http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb. Then install the package: {{{
sudo dpkg -i ccd2iso_0.2-0.1_i386.deb
}}}
  * To convert to iso using '''ccd2iso''' {{{
ccd2iso myfile.img myfile.iso
}}}
Line 65: Line 82:
Alcohol 120% image files can either be converted to iso using '''mdf2iso''' or mounted directly using '''mount'''.

To mount using '''mount''':

{{{
 * Alcohol 120% image (.mdf) files can either be converted to iso using '''mdf2iso''' or mounted directly using '''mount'''.
* To mount using '''mount''': {{{
Line 73: Line 87:

To install '''mdf2iso''':

{{{
  * To install '''mdf2iso''': {{{
Line 79: Line 90:

To convert to iso using '''mdf2iso''':

{{{
  * To convert to iso using '''mdf2iso''': {{{
Line 85: Line 93:
 * A couple of other image formats can be found on the help page [[ManageDiscImages]].

== Other Options ==

 * '''cdemu''' is a kernel module for mounting Cue/Bin files directly. To install it you would have to setup [[LinuxHeader]]s, compile the module and [[modprobe]] it. This is out of the scope of this page. There is a script under development in the Ubuntu forums for automating the building of '''cdemu''' [[http://www.ubuntuforums.org/showthread.php?t=149963|Located Here]] (Use this at your own risk.)


 * [[http://www.debianadmin.com/mount-and-unmout-iso-images-without-burning-them.html|"Mount and Unmount ISO images without burning them"]] has a nice step-by-step explanation (with screen shots) showing how to mount and unmount ISO images.
Line 88: Line 104:
CategoryDocumentation CategoryDocumentation CategoryDocumentation CategoryDocumentation CategoryCleanup

Mounting ISO Files

Introduction

An IsoImage is an image of a CD or DVD disk that can be stored on your computer and used to write to a new disk. It is also possible to mount an IsoImage to your disk, removing the need of a CD.

GUI

gISOMount is a utility for mounting and managing .iso images with the added capabilities of calculating md5sums, and reading various volume information. It can be downloaded through Synaptic Package Manager

Command Line

The default mount point under GNU/Linux is under /media.

To mount an iso file to this location:

  • sudo mkdir /media/cdimage
    sudo mount -o loop ''myfile''.iso /media/cdimage

Note: myfile.iso is to be replaced with the file you want to mount. This will mount the ISO image to the directory /media/cdimage.

To unmount the image:

  • sudo umount /media/cdimage
    rmdir /media/cdimage

Convert Other Formats To ISO

Other formats of CD or DVD images can be converted to ISO and then mounted as above.

  • .img files can be converted to .iso using ccd2iso.

     ccd2iso imagen.img imagen.iso
  • Nero image (.nrg) files can either be converted to iso using nrg2iso or mounted directly using mount.

    • To mount using mount:

      sudo mkdir /media/cdimage
      sudo mount -o loop,offset=307200 myfile.nrg /media/cdimage
    • To install nrg2iso:

      sudo apt-get install nrg2iso
    • To convert to iso using nrg2iso:

      nrg2iso myfile.nrg myfile.iso
  • Cue/Bin image (.cue/.bin) files must be converted. This can be done using bchunk.

    • To install bchunk:

      sudo apt-get install bchunk
    • To convert to iso using bchunk:

      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.

  • Alcohol 120% image (.mdf) files can either be converted to iso using mdf2iso or mounted directly using mount.

  • To mount using mount:

    sudo mkdir /media/cdimage
    sudo mount -o loop=/dev/loop0 myfile.iso /media/cdimage
    • To install mdf2iso:

      sudo apt-get install mdf2iso
    • To convert to iso using mdf2iso:

      mdf2iso myfile.mdf myfile.iso
  • A couple of other image formats can be found on the help page ManageDiscImages.

Other Options

  • cdemu is a kernel module for mounting Cue/Bin files directly. To install it you would have to setup LinuxHeaders, compile the module and modprobe it. This is out of the scope of this page. There is a script under development in the Ubuntu forums for automating the building of cdemu Located Here (Use this at your own risk.)

  • "Mount and Unmount ISO images without burning them" has a nice step-by-step explanation (with screen shots) showing how to mount and unmount ISO images.


CategoryDocumentation CategoryCleanup

MountIso (last edited 2012-11-12 22:05:40 by 95)