# Allowing All Users Access to a FUSE Mount on MacOS By default, FUSE does not allow all users to access a FUSE volume on macOS. To fix this you need to mount the volume with `-oallow_other`. Additionally, you need to set the FUSE admin group to staff by calling `sudo sysctl -w vfs.generic.macfuse.tunables.admin_group=20` for FUSE versions 4.* . For older FUSE versions ( 3.* ) run `sudo sysctl -w vfs.generic.osxfuse.tunables.admin_group=20` instead. For more info see: https://github.com/osxfuse/osxfuse/wiki/Mount-options. FUSE is used by Cryptomator and [[Rclone]] on macOS for drive mounting.