#文件属性修改:
chmod a=r filename.txt #一次性修改文件的uesr group 和 other的权限为 r ,只读
chmod 444 filename.txt
#学习chown命令,修改文件的属性
-r--------------- 1 root root 0 11月 16 16:43 dd.txt
#语法
chown 新属主名字 文件/文件夹
chown :属组 文件 #修改文件的用户组
chown 属主:属组 文件 #同是修改文件的属主,属组
-R 递归修改文件的属主,属组
#修改dd.txt的属主,为yu2用户
#通过root用户,修改文件的一切信息,修改yu2文件夹以及文件夹中所有的文件,属主为root,属组也改为root
chown -R root:root yu2 #强制抢走yu2的内容,改为root属主,属组
chattr 命令
chattr命令用于更改文件的扩展属性,比chmod更改的rwx权限更底层
[root@localhost text_chmod]# chattr +a text_1.txt
[root@localhost text_chmod]# lsattr
-----a---------- ./text_1.txt
[root@localhost text_chmod]# rm -rf text_1.txt
rm: 无法删除"text_1.txt": 不允许的操作
[root@localhost opt]# rm -rf text_chmod/
rm: 无法删除"text_chmod/text_1.txt": 不允许的操作
[root@localhost text_chmod]# chattr -a text_1.txt #撤销操作
[root@localhost text_chmod]# rm -rf text_chmod/
参数:
a 只能追加文件数据,不得删除
i 文件不得被删除,改名 修改内容
模式:
+ 增加参数
- 移出参数
= 更新为指定参数