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

16
pages.zh/linux/chattr.md Normal file
View File

@@ -0,0 +1,16 @@
# chattr
> 更改文件或目录的属性。
> 更多信息:<https://manned.org/chattr>。
- 使文件或目录对更改和删除不可变,即使是超级用户也不能更改:
`chattr +i {{path/to/file_or_directory}}`
- 使文件或目录可变:
`chattr -i {{path/to/file_or_directory}}`
- 递归地使整个目录及其内容不可变:
`chattr -R +i {{path/to/directory}}`