← 返回命令列表

Linux command

fusermount 命令

安全

权限或系统影响较大,执行前请核对目标。

常用示例

Unmount FUSE filesystem

fusermount -u [mountpoint]

Force unmount

fusermount -uz [mountpoint]

Show version

fusermount -V

List all FUSE mounts

mount -t fuse

Unmount with options

fusermount -u -o [option] [mountpoint]

说明

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.

参数

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

FAQ

What is the fusermount command used for?

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.

How do I run a basic fusermount example?

Run `fusermount -u [mountpoint]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -u do in fusermount?

Unmount filesystem.