LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

fusermount

FUSE filesystem mount manager

TLDR

Unmount FUSE filesystem
$ fusermount -u [mountpoint]
copy
Force unmount (lazy)
$ fusermount -uz [mountpoint]
copy
Show version
$ fusermount -V
copy
List all FUSE mounts
$ mount -t fuse
copy
Unmount with options
$ fusermount -u -o [option] [mountpoint]
copy

SYNOPSIS

fusermount [options] mountpoint

DESCRIPTION

fusermount is a utility for mounting and unmounting FUSE (Filesystem in Userspace) filesystems. It's primarily used for unmounting, as mounting is typically done by the filesystem program itself.The tool enables non-root users to mount and unmount filesystems, subject to proper permissions and configuration.

PARAMETERS

-u

Unmount filesystem.
-z
Lazy unmount (like umount -l).
-q
Quiet mode.
-o options
Mount options.
-V
Display version.
-h
Display help.

CONFIGURATION

/etc/fuse.conf

Controls system-wide FUSE settings including userallowother and mount_max.

INSTALL

sudo apt install fuse3
copy
sudo dnf install fuse3
copy
sudo pacman -S fuse3
copy
sudo apk add fuse
copy
sudo zypper install fuse3
copy
nix profile install nixpkgs#fuse3
copy

CAVEATS

Lazy unmount may leave filesystem in use. Regular users need proper permissions. Some options require root. Mount must be from fusermount or userallowother.

HISTORY

fusermount is part of the FUSE (Filesystem in Userspace) project, originally created by Miklos Szeredi around 2001. FUSE enables userspace programs to export filesystems to the kernel, revolutionizing filesystem development on Linux.

SEE ALSO

mount(1), umount(1), sshfs(1), encfs(1)

RESOURCES

Copied to clipboard
Kai