Fuse

From wikinotes

Userspace filesystem mounting.

Documentation

fuse.conf options http://manpages.ubuntu.com/manpages/xenial/man8/mount.fuse.8.html

Locations

${PREFIX}/etc/fuse.conf config

Install

# FreeBSD (I believe fuse ships with the base-system)
pacman -S fuse3  # Arch

Usage

Load the fuse kernel module

kldload fusefs.ko  # FreeBSD
modprobe fuse      # Linux

Fuse is normally used by another filesystem, ex: sshfs.

Configuration

Load fuse kernel module on boot

# /boot/loader.conf
fuse_load="YES"
# /etc/fuse.conf

user_allow_other  # allow non-root users to perform mounts