add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/sshfs.md Normal file
View File

@@ -0,0 +1,24 @@
# sshfs
> 基于SSH的文件系统客户端。
> 更多信息:<https://github.com/libfuse/sshfs>。
- 挂载远程目录:
`sshfs {{用户名}}@{{远程主机}}:{{远程目录}} {{挂载点}}`
- 卸载远程目录:
`umount {{挂载点}}`
- 从特定端口挂载远程目录:
`sshfs {{用户名}}@{{远程主机}}:{{远程目录}} -p {{2222}}`
- 使用压缩:
`sshfs {{用户名}}@{{远程主机}}:{{远程目录}} -C`
- 跟随符号链接:
`sshfs -o follow_symlinks {{用户名}}@{{远程主机}}:{{远程目录}} {{挂载点}}`