Diff for "MountIso"


Differences between revisions 15 and 17 (spanning 2 versions)
Revision 15 as of 2008-04-09 14:36:18
Size: 3967
Editor: cbf020
Comment: Bit better formatting, Spelling mistakes corrected.
Revision 17 as of 2008-04-10 23:19:26
Size: 4254
Editor: 209
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
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. You can mount an image without burning it to as disc, it is quite a simple process and this guide can be used as an aid.  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 11: Line 11:
You can install the GUI application called gIsoMount using ["Synaptic"]. 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 15: Line 15:
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, use the following commands: 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 19: Line 21:
sudo mount -o loop myfile.iso /media/cdimage sudo mount -o loop ''myfile''.iso /media/cdimage
Line 22: Line 24:
'''Note''': myfile.iso should be replaced with the file you want to mount.
This will mount the ISO image to the directory ''/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''.
Line 26: Line 28:
To mount the image so that it can be written to do the following instead: ##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:
Line 28: Line 31:
 {{{
sudo mkdir /media/cdimage
sudo mount -o rw,loop myfile.iso /media/cdimage
}}}
## {{{
##sudo mkdir /media/cdimage
##sudo mount -o rw,loop myfile.iso /media/cdimage
##}}}
Line 33: Line 36:
To unmount the image do this: '''To unmount the image:'''
Line 39: Line 42:
##What does this have to do with Mounting an ISO?
Line 45: Line 48:
 * .img files can be converted to iso using '''ccd2iso'''.  * .img files can be converted to .iso using '''ccd2iso'''.

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 [http://en.wikipedia.org/wiki/Mount_point 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


CategoryDocumentation CategoryCleanup

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