Results 1 to 5 of 5
I'm trying to mount an iso to copy the files to my hd. I've found the commonly used command to do this...
Code:
mount -o loop image.iso /mnt/isoimage/
came back ...
- 11-21-2006 #1
Trouble Mounting ISO image
I'm trying to mount an iso to copy the files to my hd. I've found the commonly used command to do this...
came back that mount-point didn't exist so I made the mount point according to someones site that I found...Code:mount -o loop image.iso /mnt/isoimage/
I ran the mount command again and now it saysCode:mkdir -p /mnt/isoimage/
Is there something wrong with the mount command or how I created the mountpoint, or are there other settings in SUSE that I have to change first?Code:mount: Not a directory
- 11-21-2006 #2
That's good, you just forgot a little something, the filesystem type :
Also, make sure the mount point is an empty directory.Code:mount -t iso9660 -o loop image.iso /mnt/isoimage/
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 11-21-2006 #3
I tried it as
before and got the same thing. Also the directory was brand new nothing in it.Code:mount -o loop -t iso9660 image.iso /mnt/isoimage/
- 11-21-2006 #4
Well, the problem must be with /mnt/isoimage/, verify that this directory exist and that it is writable (proper permissions set).
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 11-22-2006 #5
seems like it may be a problem wih the iso, other iso's load alright. Will redownload and try again.


Reply With Quote