This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# **chattr**
## 说明
*chattr命令* 用来改变文件属性。这项指令可改变存放在ext2文件系统上的文件或目录属性,这些属性共有以下8种模式:
```markdown
-R 递归处理
-V 输出详细信息
-f 禁止大部分的错误信息输出
+-=[aAcCdDeijsStTu]
+ 代表将某个属性添加到文件的属性中
- 代表移除某个属性
= 代表使某个属性成为文件的唯一属性
属性含义依次为:
a:让文件或目录仅供附加用途
b:不更新文件或目录的最后存取时间(atime)
c:将文件或目录压缩后存放
C:写入没有副本
d:将文件或目录排除在倾倒操作之外,即没有dump
D:即时更新目录
e:extent格式化
i:不得任意更动文件或目录
j:记录data
s:保密性删除文件或目录
S:即时更新文件
t:no tail-merging
T:top of directory hierarchy
u:预防意外删除
```
## 实例
```bash
chattr +i /etc/fstab # 用chattr命令防止系统中某个关键文件被修改
chattr +a /data1/user_act.log # 让某个文件只能往里面追加内容,不能删除,一些日志文件适用于这种操作