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

View File

@@ -0,0 +1,17 @@
# mount.cifs
> 挂载 SMB服务器消息块或 CIFS通用互联网文件系统共享。
> 注意:您也可以通过将 `-t cifs` 选项传递给 `mount` 来完成相同的操作。
> 更多信息:<https://manned.org/mount.cifs>。
- 使用指定的用户名或默认的 `$USER` 连接(系统会提示您输入密码):
`mount.cifs -o user={{username}} //{{server}}/{{share_name}} {{mountpoint}}`
- 以访客用户身份连接(不需要密码):
`mount.cifs -o guest //{{server}}/{{share_name}} {{mountpoint}}`
- 设置挂载目录的所有权信息:
`mount.cifs -o uid={{user_id|username}},gid={{group_id|groupname}} //{{server}}/{{share_name}} {{mountpoint}}`