RSS

Quicktip - How to mount/unmout ISO images without burning them

Tue, Oct 10, 2006

ArsGeek, Linux, Quicktips

Talk about it in our Forums

quick tip

Have you ever come across an ISO you want to check out but you don’t want to burn the thing to a CD or DVD? Perhaps you’re remastering your linux distro, or you’re creating a bootable, slipstreamed WinXP install or something and you want to test it without wasting 10 DVDs in the process. Well, here’s how to do it.

First let’s make a directory to put this ISO into.

sudo mkdir /media/iso

Now, let’s add the loop module to your kernel.

sudo modprobe loop

Hey! You’re doing kernel stuff. nice! Now let’s get the ISO mounted.

sudo mount some.iso /media/iso/ -t iso9660 -o loop

Now you should have your iso file mounted, and accessible from the desktop. Want to unmount it?

sudo umount /media/iso

Easy as pie.

Click the icon, share the link:
  • Digg
  • del.icio.us
  • MisterWong
  • Furl
  • Reddit
  • Technorati
  • BlinkList
  • feedmelinks
  • PopCurrent
  • Blogosphere News
  • Facebook
  • Fark
  • Mixx
  • Slashdot

This post was written by:

arsgeek - who has written 1980 posts on ArsGeek.


Contact the author

6 Comments For This Post

  1. bob Says:

    I believe you the word you’re looking for is wasting, not waisting.

  2. arsgeek Says:

    Bob,

    Indeed. Slip from a wish for my wasting waist.

  3. Nem W Schlecht Says:

    If you’re running Solaris (I believe ver. 8 on), you use ‘lofi’ to do this instead of a loopback interface. As root:

    lofiadm -a /path/to/iso
    mount -F hsfs /dev/lofi/1 /mount/it/here

    When done:

    umount /mount/it/here
    lofiadm -d /dev/lofi/1

    If you mount multiple images simultaneously, the number lofi device number will change (increment).

  4. arsgeek Says:

    Hi Nem,

    Thanks for the great tip!

  5. hello Says:

    But How do I burn/boot from a boot cd? install a OS from a cd? :D

  6. Adam Kane Says:

    Most users, especially new users to Linux, want a solution that doesn’t require use of the command prompt.

    Try KDE service menus for right-click access to cd images:
    http://kde-apps.org/index.php?xcontentmode=287

    Or try Gnome Nautilus scripts:
    http://g-scripts.sourceforge.net/

4 Trackbacks For This Post

  1. teknokool.net » Blog Archive » links for 2006-10-10 Says:

    [...] How to mount/unmout ISO images without burning them (tags: linux) [...]

  2. Come montare immagini ISO con Linux senza doverle masterizzare « NetJack Blog Says:

    [...] Quella che segue e’ la traduzione di un tutorial trovato su ArsGeek. [...]

  3. Mexico501 » Blog Archive » How to mount/unmout ISO images without burning them Says:

    [...] Page Summary: You can leave a response, or trackback from your own site.read more | digg story [...]

  4. Montando arquivos .iso sem ter que gravar o CD ou DVD | BrPoint Says:

    [...] Vi no ArsGeek [...]

Leave a Reply