You are not logged in.
Pages: 1
Topic closed
Just when I started thinking I was proficient at linux...
sudo mount -o loop test.iso /mnt/test/gives this error:
mount: could not find any device /dev/loop#The mount point DOES exist already. What am I doing wrong?
Offline
I think you're just missing the "-t" option of mount
#mount -o loop -t iso9660 image.iso /target-dir
works for me...
Offline
try this
modprobe loop
mount -o -t loop iso9660 image.iso /target-dirOffline
You need to modprobe now to get loop devices
modprobe loop
Add it to /etc/rc.conf modules list.
Offline
The problem was the loop module. A simple modprobe loop solved it. Thank you.
Can someone explain:
1. What the loop module does?
2. What the -t iso9660 option does?
Offline
1. I believe that loop module is used to mount images.
2. '-t iso9660' - you specify here file system. So iso has it.
Last edited by sevenfourk (2008-07-25 09:08:16)
No cause is lost if there is but one fool left to fight for it.
Offline
Thank you im forgot this thing, ![]()
Offline
Yermandu: Note that this is a four year old thread. I have not seen many of these members in years ![]()
Closing in accordance with our policy.
Don't worry, we all do it from time to time.
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
One difference between the two OSs though is that Linux progresses. The other decays.. --Trilby
----
How to Ask Questions the Smart Way
Offline
Pages: 1
Topic closed