You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB

This file contains ambiguous Unicode characters!

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即时更新目录
eextent格式化
i不得任意更动文件或目录
j记录data
s保密性删除文件或目录
S即时更新文件
tno tail-merging
Ttop of directory hierarchy
u预防意外删除
```
## 实例
```bash
chattr +i /etc/fstab # 用chattr命令防止系统中某个关键文件被修改
chattr +a /data1/user_act.log # 让某个文件只能往里面追加内容,不能删除,一些日志文件适用于这种操作
```