chattr
chattr可以用来制约root的权限,使得系统更加安全。
主要参数:
a:让文件或目录仅供附加用途。
b:不更新文件或目录的最后存取时间。
c:将文件或目录压缩后存放。
d:将文件或目录排除在倾倒操作之外。
i:不得任意更动文件或目录。
s:保密性删除文件或目录。
S:即时更新文件或目录。
u:预防意外删除。
用法
chattr +/-/=[参数] file
eg:
touch info.txt
chattr +i info.txt
lsattr
那么chattr设置的隐藏属性怎么查看呢?简单,用lsattr
格式:
lsattr file
eg:
lsattr info.txt