I have an .iso file which I would like to mount. I have made a folder in /mnt/iso as a mount point. Now I try:
sudo mount -o loop filename.iso /mnt/iso
and the reply is:
mount: you must specify the filesystem type
and the folder of /mnt/iso is empty. I have tried using
sudo mount -o loop -t ext4 filename.iso /mnt/iso
it says that mount: wrong fs type, bad option, bad superblock on /dev/loop0, missing codepage or helper program, or other error (and more text)...
I found the filesystem type from using df -T and mount at the command line.
What could be missing or wrong?
man mount
?df -T
andmount
describe the current state of the system. If you ran the commands before you mounted a .iso, ... – waltinator Jan 01 '12 at 19:32