How To Mount ISO Image Without Burning Them in Linux

For various reasons,you may want to use ISO images without burning them,and you just need to mount them in a easy way.

First,create a directory which you want to mount ISO images to by running following command in terminal:

sudo mkdir /media/ISOimage

Then,add the loop module to your kernel,so it is possible to mount a compressed filesystem file:

sudo modprobe loop

Change directory where ISO images located:

cd /iso-images-directory

Now,use following command to mount ISO image:

sudo mount iso-image-name.iso /media/ISOimage/ -t iso9660 -o loop

replace “iso-image-name.iso”to your ISO image.

And,use this command to umount ISO image:

sudo umount /media/ISOimage

Comments

Popular posts from this blog

SOX - Sound eXchange - How to use SOX for audio processing tasks in research.

Sox of Silence - Original post - http://digitalcardboard.com/blog/2009/08/25/the-sox-of-silence/

How to get video or audio duration of a file using ffmpeg?