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,25 @@
# restorecon
> 根据持久规则恢复文件/目录的 SELinux 安全上下文。
> 另见:`semanage-fcontext`。
> 更多信息:<https://manned.org/restorecon>。
- 查看文件或目录的当前安全上下文:
`ls -dlZ {{path/to/file_or_directory}}`
- 恢复文件或目录的安全上下文:
`restorecon {{path/to/file_or_directory}}`
- 递归地恢复目录的安全上下文,并显示所有更改的标签:
`restorecon -R -v {{path/to/directory}}`
- 递归地恢复目录的安全上下文,使用所有可用线程,并显示进度:
`restorecon -R -T {{0}} -p {{path/to/directory}}`
- 预览如果不应用将发生的标签更改:
`restorecon -R -n -v {{path/to/directory}}`