文件隐藏属性: chattr, lsattr

chattr(设置文件的隐藏属性)

[root@www ~]# chattr [+-=] [ASacdistu] File/Directory

参数

+:增加某个参数

-:删除某个参数

=:仅有后面接的参数

各个参数的意思
参数 含义
A 设置A属性后,若你访问此文件或目录时,它的访问时间atime不会被修改,可避免I/O较慢的机器过度访问磁盘。这对速度较慢的计算机有帮助。
S 一般文件是异步写入磁盘,加上S属性后,文件将同步写入磁盘
a 当设置a后,文件只能增加数据,既不能删除也不能修改数据,只有root才能设置这个属性
c 设置c属性后,会自动将文件压缩,在读取时自动解压缩
d 当dump程序执行时,设置d属性将可使改文件或目录不被dump备份
i i属性可使文件不能被删除、改名,设置连接也无法写入或添加数据。对于系统安全性有很大帮助。只有root能设置此属性。
s 当文件设置s属性时,如果文件被删除,将从硬盘彻底删除
u 与s相反,当文件设置u属性时,文件删除后数据内容还存在磁盘,可以使用来找回该文件
j A file with the `j' attribute has all of its data written to the ext3 journal before being written to the file itself, if the  filesystem  is mounted with the "data=ordered" or "data=writeback" options. When the filesystem is mounted with the "data=journal" option all file data is already journalled and this attribute has no effect. Only the superuser or a process possessing the CAP_SYS_RESOURCE capability can set or clear this attribute.

lsattr(显示文件隐藏属性)

[root@www ~]# lsattr [-adR] File/Directory

参数

-a:将隐藏文件的属性也显示出来

-d:如果接的是目录,仅列出目录本身的属性而不是目录内的文件名

-R:连同子目录的数据也显示出来

使用范例

[root@www ~]# chattr +aij attrtest

[root@www ~]# lsattr attrtest

----ia---j---    attrtest

About the Author

Avatar photo

今生在线

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据