How do I create a file of size 10M, format it with ext3 filesystem and then mount it in /media/fuse?
I tried with
mkfs -t ext3 file
then to mount it
mount -t ext3 file /media/fuse
It didn't work because it said that file wasn't a block device. Can anybody help me?
-o loopto the mount command. – enzotib Dec 7 '11 at 19:54mount -o loop file.iso /media/iso. – Anonymous Dec 7 '11 at 20:50