linux权限管理之文件属性
Posted anttech
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux权限管理之文件属性相关的知识,希望对你有一定的参考价值。
文件属性 chattr
========================================================
文件权限管理之: 文件属性
注:设置文件属性(权限),针对所有用户,包括root
[[email protected] ~]# touch file100 file200 file300
[[email protected] ~]# lsattr file100 file200 file300
-------------e- file100
-------------e- file200
-------------e- file300
[[email protected] ~]# man chattr
[[email protected] ~]# chattr +a file100
[[email protected] ~]# chattr +i file200
[[email protected] ~]# chattr +A file300
[[email protected] ~]# lsattr file100 file200 file300
-----a-------e- file100
----i--------e- file200
-------A-----e- file300
[[email protected] ~]# echo 111 > file100 //以覆盖的方式写入
bash: file100: Operation not permitted
[[email protected] ~]# rm -rf file100
rm: cannot remove `file100‘: Operation not permitted
[[email protected] ~]# echo 111 >> file100 //以追加的方式写入,例如日志文件
[[email protected] ~]# echo 111 > file200
bash: file200: Permission denied
[[email protected] ~]# echo 111 >> file200
bash: file200: Permission denied
[[email protected] ~]# rm -rf file200
rm: cannot remove `file200‘: Operation not permitted
[[email protected] ~]# chattr -a file100
[[email protected] ~]# chattr -i file200
[[email protected] ~]# chattr -A file300
以上是关于linux权限管理之文件属性的主要内容,如果未能解决你的问题,请参考以下文章
Linux系列教程(十七)——Linux权限管理之文件系统系统属性chattr权限和sudo命令
Linux系列教程(十七)——Linux权限管理之文件系统系统属性chattr权限和sudo命令