Page 1 of 1

Solved: How do I mount iso files in linux?

Posted: Tue Jan 12, 2010 11:05 pm
by mister_v
Hello,

Can anyone tell we how I quickly mount cd-images or DVD-images in linux.

I know it can be done by mount,
But I don't know the exact command.


Thanks,

Re: How do I mount iso files in linux?

Posted: Wed Jan 13, 2010 8:26 am
by Chris
The command you need is:

Code: Select all

mount -o loop disk1.iso /mnt/disk
It has to be done as root,
So use

Code: Select all

su -
or

Code: Select all

sudo

Re: How do I mount iso files in linux?

Posted: Sat Jan 16, 2010 6:03 pm
by mister_v
Thanks, that was what i was looking for.