HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

fusermount — Mount and unmount FUSE filesystems. More information: <https://manned.org/fusermount>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandandfuseunmountclifusermountmountfilesystems

Problem

How to use the fusermount command: Mount and unmount FUSE filesystems. More information: <https://manned.org/fusermount>.

Solution

fusermount — Mount and unmount FUSE filesystems. More information: <https://manned.org/fusermount>.

Unmount a FUSE filesystem:
fusermount -u {{path/to/mount_point}}


Unmount a FUSE filesystem as soon as it becomes unused:
fusermount -z {{path/to/mount_point}}


Display version:
fusermount --version

Code Snippets

Unmount a FUSE filesystem

fusermount -u {{path/to/mount_point}}

Unmount a FUSE filesystem as soon as it becomes unused

fusermount -z {{path/to/mount_point}}

Display version

fusermount --version

Context

tldr-pages: common/fusermount

Revisions (0)

No revisions yet.