mount FAT file systems using FUSE and VUOS/vufuse
This repository generates both the fusefatfs
command for
FUSE (Filesystem in Userspace)
and the plug-in submodule for VUOS.
It supports FAT12, FAT16, FAT32 and exFAT formats.
Mount the diskimage /tmp/myfatimage
on /tmp/mnt
mkdir /tmp/mnt
fusefatfs -o ro /tmp/myfatimage /tmp/mnt
then umount it using:
fusermount -u /tmp/mnt
Read write access is enabled using the option -o rw+
or -o rw,force
.
It is warmly suggested to create a backup copy of the disk image, especially if
the disk image contains valuable data.
Start a umvu session. Then load the vufuse
module:
vu_insmod vufuse
and mount your disk image:
vumount -t vufusefatfs -o ro /tmp/myfatimage /tmp/mnt
then umount it using:
vuumount /tmp/mnt
fusefatfs
is based on the FAT file system module for embedded systems fatfs
by ChaN.
This is a VirtualSquare project!