LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Ubuntu (https://www.linuxquestions.org/questions/ubuntu-63/)
-   -   Mounting Disc Images (https://www.linuxquestions.org/questions/ubuntu-63/mounting-disc-images-459643/)

tsunamikitsune 06-29-2006 10:54 PM

Mounting Disc Images
 
How do I mount disc images (like ISO files) in Ubuntu? What program do I need?

zhangmaike 06-30-2006 01:53 AM

Quote:

What program do I need?
You already have it: mount.

As root:
Code:

mount -o loop disc_image.iso /some/random/mount/point
The -o loop option tells mount to mount the specified file using the loopback device (a Linux device which lets you mount files, such as CD images, as if they were block devices).

x86processor 06-30-2006 04:14 AM

Quote:

What program do I need?
You will need the loop driver module loaded. Check in the output of /sbin/lsmod.


All times are GMT -5. The time now is 12:02 AM.