Diff for "MountIso"


Differences between revisions 1 and 2
Revision 1 as of 2006-07-14 09:12:37
Size: 1990
Editor: cpc1-cowc1-0-0-cust306
Comment:
Revision 2 as of 2006-07-14 13:13:26
Size: 1947
Editor: cpc1-cowc1-0-0-cust306
Comment:
Deletions are marked like this. Additions are marked like this.
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 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.
Line 11: Line 11:
The default mount point under linux is under ''/media''. To create a mount point here do the following:  The default mount point under linux is under ''/media''. To create a mount point here do the following:
Line 13: Line 13:
{{{  {{{
Line 18: Line 18:
Where myfile.iso is replaced with the file you want to mount.  Where myfile.iso is replaced with the file you want to mount.
Line 20: Line 20:
To mount the image so that it can be written to do the following instead:  To mount the image so that it can be written to do the following instead:
Line 22: Line 22:
{{{  {{{
Line 27: Line 27:
To unmount the image do this:  To unmount the image do this:
Line 29: Line 29:
{{{  {{{
Line 36: Line 36:
Other formats of CD or DVD images can be converted to iso and then mounted as above.  Other formats of CD or DVD images can be converted to iso and then mounted as above.
Line 39: Line 39:
 * Nero image (.nrg) files

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

To mount using '''mount''':

{{{
 * Nero image (.nrg) files can either be converted to iso using '''nrg2iso''' or mounted directly using '''mount'''.
  * To mount using '''mount''': {{{
Line 48: Line 43:
}}}

To install '''nrg2iso''':

{{{
}}} 
  * To install '''nrg2iso''': {{{
Line 54: Line 46:
}}}

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

{{{
}}} 
  * To convert to iso using '''nrg2iso''': {{{
Line 62: Line 51:

* Alcohol 120% image (.mdf) files

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 72: Line 55:
}}}

To install '''mdf2iso''':

{{{
}}} 
  * To install '''mdf2iso''': {{{
Line 78: Line 58:
}}}

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

{{{
}}} 
  * To convert to iso using '''mdf2iso''': {{{

Mounting ISO Files

Introduction

  • 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.

Instructions

  • The default mount point under linux is under /media. To create a mount point here do the following:

    sudo mkdir /media/cdimage
    sudo mount -o loop myfile.iso /media/cdimage
    Where myfile.iso is replaced with the file you want to mount. 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 do this:
    sudo umount /media/cdimage
    rm -R /media/cdimage

Other Formats

  • Other formats of CD or DVD images can be converted to iso and then mounted as above.
  • 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.iso /media/cdimage
    • To install nrg2iso:

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

      nrg2iso myfile.nrg myfile.iso
  • 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


CategoryDocumentation CategoryDocumentation CategoryDocumentation

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