mirror of https://github.com/CrimsonTome/tldr.git
17 lines
333 B
Markdown
17 lines
333 B
Markdown
|
# fusermount
|
||
|
|
||
|
> Mount and unmount FUSE filesystems.
|
||
|
> More information: <https://man.archlinux.org/man/fusermount.1>.
|
||
|
|
||
|
- 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`
|