mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Updated Mount (markdown)
parent
9cbb199ce0
commit
ab2db88872
21
Mount.md
21
Mount.md
|
@ -156,4 +156,23 @@ Threads fairness:
|
||||||
execution time (avg/stddev): 299.4514/0.00
|
execution time (avg/stddev): 299.4514/0.00
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Unmount ###
|
||||||
|
|
||||||
|
Sometimes `weed mount` can not start if the last mount process was not cleaned up.
|
||||||
|
|
||||||
|
You can clean up with these commands. Try any of them until it works:
|
||||||
|
|
||||||
|
```
|
||||||
|
// on mac
|
||||||
|
sudo umount /the/mounted/dir
|
||||||
|
diskutil unmount force /the/mounted/dir
|
||||||
|
sudo umount -f /the/mounted/dir
|
||||||
|
sudo umount -l /the/mounted/dir
|
||||||
|
|
||||||
|
// on linux
|
||||||
|
sudo umount -f /the/mounted/dir
|
||||||
|
sudo umount -l /the/mounted/dir
|
||||||
|
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue