设置文件用户属性
文件权限管理由文件的属主或 root 用户执行, chmod 命令可以更改文件的权限信息。
【命令格式】
chmod newmode filename
newmode:是权限表达式,权限表达式使用绝对模式
filename:文件名
以下是 chmod 命令的执行结果:
[root@sylixos:/]# cd tmp
[root@sylixos:/tmp]# ls
.qt_soundserver-0 qtembedded-0
[root@sylixos:/tmp]# mkdir user
[root@sylixos:/tmp]# ls
user .qt_soundserver-0 qtembedded-0
[root@sylixos:/tmp]# ll
drwxr-xr-- root root Tue Jun 16 22:19:38 2015 user/
-rw------- root root Tue Jun 16 20:22:18 2015 0 B, .qt_soundserver-0
drwx------ root root Tue Jun 16 20:23:26 2015 qtembedded-0/
total items : 3
[root@sylixos:/tmp]# chmod 070 user/# ll
dr--rwx--- root root Tue Jun 16 22:19:38 2015 user/
-rw------- root root Tue Jun 16 20:22:18 2015 0 B, .qt_soundserver-0
drwx------ root root Tue Jun 16 20:23:26 2015 qtembedded-0/
total items : 3
[root@sylixos:/tmp]#