common/u*: add Chinese translation (#14688)

* common/u*: add Chinese translation

* Update uv-tool.md

* Update ugrep.md
This commit is contained in:
Jin
2024-11-19 04:23:02 -05:00
committed by GitHub
parent 156075e8b1
commit 2a4ef14253
28 changed files with 601 additions and 0 deletions

17
pages.zh/common/umount.md Normal file
View File

@@ -0,0 +1,17 @@
# umount
> 将文件系统与其挂载点解除链接,使其不再可访问。
> 当文件系统正在使用时,无法卸载。
> 更多信息:<https://man.openbsd.org/umount>.
- 卸载文件系统,通过传递挂载源的路径:
`umount {{路径/到/设备文件}}`
- 卸载文件系统,通过传递挂载目标的路径:
`umount {{路径/到/挂载目录}}`
- 卸载所有已挂载的文件系统(`proc` 文件系统除外):
`umount -a`