chmod只是改变文件的读写、执行权限,更底层的属性控制是由chattr来改变的,chattr控制更细腻。
[root@localhost temp]# lsattr
————-e- ./workfile ————-e- ./2.txt lsattr: Operation not supported While reading flags on ./4.txt –chattr的i参数使文件不能修改与删除 [root@localhost temp]# chattr i 2.txt
[root@localhost temp]# lsattr ————-e- ./workfile —-i——–e- ./2.txt lsattr: Operation not supported While reading flags on ./4.txt –不能删除 [root@localhost temp]# rm -f 2.txt rm: cannot remove `2.txt’: Operation not permitted –不能修改 [root@localhost temp]# echo aaa>2.txt bash: 2.txt: Permission denied –chattr的a属性使文件只能在末尾追加内容 [root@localhost temp]# chattr a 2.txt [root@localhost temp]# lsattr ————-e- ./workfile —–a——-e- ./2.txt lsattr: Operation not supported While reading flags on ./4.txt –不能覆盖更新 [root@localhost temp]# echo aaa>2.txt bash: 2.txt: Operation not permitted –只能追加 [root@localhost temp]# echo aaa>>2.txt [root@localhost temp]# cat 2.txt aaa aaa
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/234518.html原文链接:https://javaforall.cn