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,
Solved: How do I mount iso files in linux?
-
mister_v
- Posts: 143
- Joined: Sat Jun 20, 2009 5:42 pm
Solved: How do I mount iso files in linux?
Last edited by mister_v on Tue Jan 19, 2010 10:47 pm, edited 1 time in total.
-
Chris
- Site Admin
- Posts: 132
- Joined: Mon Jul 21, 2008 9:45 am
- Location: Leuven, Belgium
Re: How do I mount iso files in linux?
The command you need is:
It has to be done as root,
So use or
Code: Select all
mount -o loop disk1.iso /mnt/diskSo use
Code: Select all
su -Code: Select all
sudo-
mister_v
- Posts: 143
- Joined: Sat Jun 20, 2009 5:42 pm
Re: How do I mount iso files in linux?
Thanks, that was what i was looking for.