1. 文件属性
通过lsattr命令可以查看Linux(list file attributes on a Linux second extended file system, 兼容ext3和ext4)的特殊属性。
1 2 3 |
[root@DEBUGO01 ~]# touch myfile [root@DEBUGO01 ~]# lsattr myfile -------------e- myfile |
相应的,chattr命令可以修改文件属性。
+ 操作符“+”用来在文件已有属性的基础上增加被选定的属性
– 操作符“-”用来去掉文件上的选定属性
= 操作符“=”表示将文件属性设置为现在选择的属性
-R recursive 递归改变目录及其内容的属性
-V 详细输出
Continue reading