How do I mount an Iso image under Ubuntu Linux?
Under UNIX and Linux like oses a loop device (a pseudo-device) can make a file accessible as a block device. It is is often used for CD / DVD ISO images and floppy disc images. Mounting a file containing a filesystem via such a loop mount makes the files within that filesystem accessible. They appear in the mount point directory.
Mount an ISO Image
Open terminal and create a mount point:
$ sudo mkdir /mnt/iso
If your iso image is at /tmp/file.iso, type the following to mount it:
$ sudo mount -o loop /tmp/file.iso /mnt/iso
To view and copy files from mount iso image:
$ cd /mnt/iso
$ ls -l
$ cp test.txt /tmp
umount - unmount File Systems
To unmount type the command:
$ sudo umount /mnt/iso
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -

