параметры конфигурации и монтирования для файловых систем FUSE (configuration and mount options for FUSE file systems)
Определения (Definitions)
FUSE
The in-kernel filesystem that forwards requests to a user-
space process.
filesystem
The user-space process that responds to requests received
from the kernel.
libfuse
The shared library that most (user-space) filesystems use
to communicate with FUSE (the kernel filesystem). libfuse
also provides the fusermount3
(or fusermount
if you have
older version of libfuse) helper to allow non-privileged
users to mount filesystems.
filesystem owner
The user that starts the filesystem and instructs the
kernel to associate it with a particular mountpoint. The
latter is typically done by the filesystem itself on
start-up. When using libfuse, this is done by calling the
fusermount3
utility.
client
Any process that interacts with the mountpoint.