查看ugo权限: ll
[root@localhost test]# ll
total 12 -rwxr-xr-x 2 root root 4 Oct 3 11:44 a lrwxrwxrwx 1 root root 1 Oct 3 15:57 a.soft -> a drwxr-xr-x 2 root root 6 Oct 3 15:54 b -rw-r--r-- 1 root root 3 Oct 3 11:09 cron -rwxr-xr-x 2 root root 4 Oct 3 11:44 p |
ugo分析说明:
ugo: user-group-other 除了x可执行权限,其他对root用户无约束力。
针对-rw-r--r--的分析:第1位表示文件类型。2-10表示ugo权限,三位一段,一共三段。 2-4位表示user文件属主权限。5-7位表示group文件属组权限。8-10位表示other权限。 |
rwx权限对应的相关命令:
对普通文件而言:
r w ---vim :wq x 对目录文件而言: r w x |
修改ugo权限:chmod
[root@localhost test]# ll
total -rw-r--r-- 1 -rw-r--r-- 1 -rw-r--r-- 1 [root@localhost test]# chmod [root@localhost test]# chmod |
用8进制数字表示ugo权限:
数字权限:三位一段,一共三段.(排列顺序必定是rwx,什么都不是,补位-,依次可用4 2 1 0表示) r --read 4 w x - [root@localhost test]# chmod 777 |
修改文件属主与属组权限:chown user:group file_name
修改文件属主和属组:chown user:group file_name 修改文件属主: chown user file_name 修改文件属组:chown :group file_name 修改文件属主及自动匹配属组: chown user: [root@localhost test]# ll -rw-r--r-- 1 [root@localhost test]# id uid=1000(lbg) [root@localhost test]# chown [root@localhost test]# ll -rw-r--r-- 1 [root@localhost test]# chown [root@localhost test]# ll -rw-r--r-- 1 [root@localhost test]# chown [root@localhost test]# ll -rw-r--r-- 1 对目录权限修改时: 加上-R表示递归修改.(目录里面文件一起修改.) [root@localhost test]# chown [root@localhost ha]# ll -rw-r--r-- 1 -rw-r--r-- 1 |