0

Can I mount with --bind and change with -t vfat ?

It's not working.

So can I mount an nfs as a blockdevice, then mount it to something else ?

1 Answers1

0

mount -bind is only for duplicating part of the filesystem tree on another place.

If you have access to an image of a filesystem (created e.g. by using dd if=/dev/sda1 of=/whatever/sda1.img) then you can do a loop mount of that image, which works by simulating a block device:

mount -o loop /whatever/sda1.img /mnt

Now the filesystem contained in /whatever/sda1.img is available under /mnt.

wurtel
  • 16,115