mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-04 07:47:45 +02:00
disk-management: add umount
This commit is contained in:
parent
60cfc79a87
commit
6b94612159
@ -42,6 +42,13 @@ The dump flag signals if the file system should be dumped.
|
|||||||
The `fsck` order signals if a file system should be checked at boot.
|
The `fsck` order signals if a file system should be checked at boot.
|
||||||
Boot partitions should be flagged with a `1` for this reason, otherwise `0`.
|
Boot partitions should be flagged with a `1` for this reason, otherwise `0`.
|
||||||
|
|
||||||
|
For undoing the mount the `umount` command can be used.
|
||||||
|
The following is a command to unmount a device from a specified directory.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
umount <path to mount point>
|
||||||
|
```
|
||||||
|
|
||||||
## Create Partition
|
## Create Partition
|
||||||
|
|
||||||
In the following it is assumed that the disk is `/dev/sda`
|
In the following it is assumed that the disk is `/dev/sda`
|
||||||
@ -122,13 +129,13 @@ This error can be fixed and the directory made accessible again by running the
|
|||||||
following command.
|
following command.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
fusermount -u <path to mount dir>
|
fusermount -u <path to mount point>
|
||||||
```
|
```
|
||||||
|
|
||||||
If this does not work the following command can be used to unmount the device.
|
If this does not work the following command can be used to unmount the device.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
umount -l <path to mount dir>
|
umount -l <path to mount point>
|
||||||
```
|
```
|
||||||
|
|
||||||
This section is based on a reply by
|
This section is based on a reply by
|
||||||
|
Loading…
x
Reference in New Issue
Block a user