This is an old revision of the document!


FreeBSD Filesystems

Fuse Filesystems

Install program:

pkg install fusefs-libs

Load kernel module now:

kldload fusefs

Load module on boot in /etc/rc.conf:

kld_list="fusefs"

exFAT

Install exfat FUSE module:

pkg install fusefs-exfat

Mount filesystem - in this example, I'm mounting an external USB drive:

mount.exfat /dev/da0p1 /mnt/usb

Add entry in /etc/fstab:

/dev/da0p1 exfat noauto,mountprog=/usr/local/sbin/mount.exfat 0 0

Alternatively, you can mount the drive in fstab by using the UUID:

glabel status | grep da0p1
/dev/gptid/19d2a9b4-0ca4-4357-ac8c-a92f07c7faf1 /mnt/usb exfat noauto,mountprog=/usr/local/sbin/mount.exfat 0 0

Navigation
QR Code
QR Code freebsd_filesystems (generated for current page)