- 论坛徽章:
- 0
|
3.3权限
chmod [-fhv] [-R [-H | -L | -P]] mode file ...
-f:权限无法被更改也不要显示错误讯息
-h:改变符号链接文件本身的属性,不是默认的改变符号链接所链接的目标文件属性。
-v:一个-v的时候显示权限变更的文件的名字,多个的时候,以八进制显示权限变更的详细情况。
-R:对目录下的文件及子目录进行相同的权限变更(不含连接文件),以递归的方式逐个改变。
-R –H:只对当前命令行里的符号链接文件起作用。
-R –L:相对于-R,它增加了一个功能:对所有的符号链接文件也起作用。
-R –P:跟chmod -R作用一样,对连接文件不起作用,这是default。
chflags [-h] [-R [-H | -L | -P]] flags file ...
-h:改变符号链接文件本身的属性,不是默认的改变符号链接所链接的目标文件属性。
-R:对目录下的文件及子目录进行相同的权限变更(不含连接文件),以递归的方式逐个改变。
-R –H:只对当前命令行里的符号链接文件起作用。
-R –L:相对于-R,它增加了一个功能:对所有的符号链接文件也起作用。
-R –P:跟chmod -R作用一样,对连接文件不起作用,这是default。
有如下flags可用:
schg, schange, simmutable
set the system immutable flag (super-user only)
防止误删或被修改,root要改回来也是只有在单用户模式或者securelevel在0或以下
uchg, uchange, uimmutable
set the user immutable flag (owner or super-user only)
跟schg一样,唯一区别是除了root之外文件所有者也有权限修改
nodump
set the nodump flag (owner or super-user only)
不让备份,dump( 备份的时候不备份该文件
sappnd, sappend
set the system append-only flag (super-user only)
只能在文件后面添加内容
uappnd, uappend
set the user append-only flag (owner or super-user only)
跟sappnd一样,但是文件所有者也可以设置
sunlnk, sunlink
set the system undeletable flag (super-user only)
系统禁删标志,不管上层目录的权限如何都不让删除
uunlnk, uunlink
set the user undeletable flag (owner or super-user only)
跟sunlnk类似,但是文件所有者也可以设置
opaque
set the opaque flag (owner or super-user only)
让那些以unionfs方式mount的目录看起来跟正常的mount一样。
arch, archived
set the archived flag (super-user only)
似乎没什么用处,其他程序都忽略了它
ls –lo可以看到这些标志是否被设置了。Flags前面加no或者去掉原来的no就是相反的作用了。如果要偷懒,chflags 0 foo,就会把foo文件的所有flags都去掉,但不推荐。
chmod涉及到权限的问题,在另外一篇文章中有比较详细的介绍了,发在小剑的blog中了,文件安全与权限 |
|