How to mount an ISO disk image

by
on
March 12, 2009

An ISO image is an archive file (disk image) of an optical disc using a conventional ISO (International Organization for Standardization) format. ISO image files typically have a file extension of .ISO.

Many times is convenient to mount an ISO file directly instead of burning it to a CD first. Not only does this save on wasted CDs/DVDs, but allows much faster access to the ISO since it is on the hard disk itself.

Create the directory or mount point for the ISO.

$ sudo mkdir -p /mnt/disk

Use the mount command to mount the ISO

$ sudo mount -o loop disk_image.iso /mnt/disk

A loop device is a pseudo-device that makes a file accessible as a block device. You can now access the files within the ISO as you would a normal disk at the mount point ‘/mnt/disk’.

No Comments
system administration
, , , , , , , ,

Related posts:

  1. Creating a Windows Boot Disk with a Linux Machine
  2. Share a remote filesystem over SSH
  3. Mount a VirtualBox shared folder inside a guest VM
  4. Free ext3 reserved blocks with tune2fs
  5. How to release the Linux disk cache

Comments (0)

No comments yet

Trackbacks (0)

No trackbacks yet

Leave a Comment

(displayed with your post)
(will not be published)
(optional)

Copyright 2008-2010 WiredRevolution.com. All rights reserved.