mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-17 00:23:00 +00:00
26 lines
322 B
Markdown
26 lines
322 B
Markdown
## Name
|
|
|
|
umount - unmount file system
|
|
|
|
## Synopsis
|
|
|
|
```**sh
|
|
$ umount <mountpoint>
|
|
```
|
|
|
|
## Arguments
|
|
* `mountpoint`: File system path to unmount
|
|
|
|
## Description
|
|
|
|
`umount` run as root unmounts a file system mounted at specified `mountpoint`.
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
# umount /
|
|
```
|
|
|
|
## See also
|
|
|
|
* [`mount`(8)](../man8/mount.md)
|