Fuse: Difference between revisions

From wikinotes
(Created page with " = Documentation = <blockquote> {| class="wikitable" |- | fuse.conf options || http://manpages.ubuntu.com/manpages/xenial/man8/mount.fuse.8.html |- |} </blockquote><!-- Docume...")
 
No edit summary
 
Line 1: Line 1:
Userspace filesystem mounting.


= Documentation =
= Documentation =
Line 17: Line 18:
|}
|}
</blockquote><!-- Locations -->
</blockquote><!-- Locations -->
= Install =
<blockquote>
<syntaxhighlight lang="bash">
# FreeBSD (I believe fuse ships with the base-system)
pacman -S fuse3  # Arch
</syntaxhighlight>
</blockquote><!-- Install -->
= Usage =
<blockquote>
Load the fuse kernel module
<syntaxhighlight lang="bash">
kldload fusefs.ko  # FreeBSD
modprobe fuse      # Linux
</syntaxhighlight>
Fuse is normally used by another filesystem, ex: sshfs.
</blockquote><!-- Usage -->


= Configuration =
= Configuration =
<blockquote>
<blockquote>
Load fuse kernel module on boot
<syntaxhighlight lang="dosini">
# /boot/loader.conf
fuse_load="YES"
</syntaxhighlight>
<source lang="bash">
<source lang="bash">
# /etc/fuse.conf
# /etc/fuse.conf


user_allow_other
user_allow_other # allow non-root users to perform mounts
</source>
</source>
</blockquote><!-- Configuration -->
</blockquote><!-- Configuration -->

Latest revision as of 23:18, 15 November 2021

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