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 ?
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 ?
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
.
nbd
oriSCSI
rather thanNFS
. see eg https://unix.stackexchange.com/q/119364/222377 – quixotic Feb 06 '18 at 13:37