Solved: How do I mount iso files in linux?

Post Reply
mister_v
Posts: 137
Joined: Sat Jun 20, 2009 5:42 pm

Solved: How do I mount iso files in linux?

Post 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,
Last edited by mister_v on Tue Jan 19, 2010 10:47 pm, edited 1 time in total.
Chris
Site Admin
Posts: 127
Joined: Mon Jul 21, 2008 9:45 am
Location: Leuven, Belgium
Contact:

Re: How do I mount iso files in linux?

Post 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
mister_v
Posts: 137
Joined: Sat Jun 20, 2009 5:42 pm

Re: How do I mount iso files in linux?

Post by mister_v »

Thanks, that was what i was looking for.
Post Reply