3- 查看目录的权限及归属
2016.6.9
目录的权限和归属
- 访问权限
权限 | 文件 | 目录 |
---|---|---|
r | 查看文件内容 | 查看目录内容(显示目录、文件列表) |
w | 修改文件内容 | 修改目录内容(在目录中新建、移动、删除文件或子目录) |
x | 执行该文件(程序或脚本) | 执行cd命令进入或退出该目录 |
- 归属(所有权)
- 属主:拥有该目录的用户账号
- 属组:拥有该目录的组账号
查看目录的属性:
错误的方法
[root@test1 ~]# ll /home/
total 40
drwx------ 4 alice alice 4096 Jun 9 11:04 alice
drwx------ 4 bourn bourn 4096 Jun 2 07:41 bourn
drwx------ 5 jason jason 4096 Jun 9 10:27 jason
drwx------ 4 sherry sherry 4096 Jun 8 21:45 sherry
drwxr-xr-x 4 root root 4096 Jun 3 09:01 teacher
drwx------. 26 test test 4096 Jun 7 10:47 test
drwx------ 4 test1 test1 4096 Jun 7 14:18 test1
drwx------ 4 test2 test2 4096 Jun 7 14:18 test2
drwx------ 4 test3 test3 4096 Jun 7 14:18 test3
drwx------ 4 test101 test100 4096 Jun 7 10:45 test81
正确的方法
[root@test1 ~]# ll -d /home/
drwxr-xr-x. 12 root root 4096 Jun 8 21:45 /home/
[root@test1 ~]#
第一次没有加-d,显示的则是home下的内容,而并不是文件夹本身。