Results 1 to 2 of 2
Hi,
I am getting error while mounting loop dev over mount_dir.
my step as follows:
#mkdir /mount_dir
#mount -o loop /mount_dir
mount: mounting /dev/loop0 on /mount_dir failed: Invalid argument...
- 11-25-2010 #1Just Joined!
- Join Date
- Nov 2010
- Posts
- 2
mount: mounting /dev/loop0 on /mount_dir failed: Invalid argument
Hi,
I am getting error while mounting loop dev over mount_dir.
my step as follows:
#mkdir /mount_dir
#mount -o loop /mount_dir
mount: mounting /dev/loop0 on /mount_dir failed: Invalid argument
- 11-25-2010 #2Just Joined!
- Join Date
- Oct 2010
- Location
- Croatia
- Posts
- 6
Flag -o is for options and you didn't give any option.
You can try something like this: sudo mount -R loop /mount_dir.
Also you can check in manual (in terminal type: man mount) to see which flag is for what.


Reply With Quote