mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
413 B
Plaintext
22 lines
413 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|