全部博文(136)
分类: LINUX
2008-12-09 20:37:38
# 1. 用户 root 创建目录 yct
[root@sbdatabase oradata2]# pwd
/oradata2 [root@sbdatabase oradata2]# ll total 885668 -rw-r--r-- 1 root root 0 Dec 5 15:58 a.file -rw-r--r-- 1 root root 10737397760 Dec 5 16:02 b.file drwx------ 2 root root 16384 Dec 5 21:16 lost+found drwxr-xr-x 2 oracle dba 4096 Dec 5 15:51 orcl [root@sbdatabase oradata2]# mkdir yct [root@sbdatabase oradata2]# ll total 885672 -rw-r--r-- 1 root root 0 Dec 5 15:58 a.file -rw-r--r-- 1 root root 10737397760 Dec 5 16:02 b.file drwx------ 2 root root 16384 Dec 5 21:16 lost+found drwxr-xr-x 2 oracle dba 4096 Dec 5 15:51 orcl drwxr-xr-x 2 root root 4096 Dec 9 11:58 yct # 2. 用户 oracle 可以读取该目录
[root@sbdatabase oradata2]# su - oracle
[oracle@sbdatabase ~]$ cd /oradata2/yct [oracle@sbdatabase yct]$ pwd /oradata2/yct # 3. 将目录 yct 修改为 drwxr-xr-- 模式,即其它组的用户只有读的权限
[oracle@sbdatabase yct]$ su - root
Password: [root@sbdatabase ~]# cd /oradata2 [root@sbdatabase oradata2]# chmod 754 yct [root@sbdatabase oradata2]# ll total 885672 -rw-r--r-- 1 root root 0 Dec 5 15:58 a.file -rw-r--r-- 1 root root 10737397760 Dec 5 16:02 b.file drwx------ 2 root root 16384 Dec 5 21:16 lost+found drwxr-xr-x 2 oracle dba 4096 Dec 5 15:51 orcl drwxr-xr-- 2 root root 4096 Dec 9 11:58 yct # 4. 此时用户 oracle 不可以读取该目录
[oracle@sbdatabase ~]$ cd /oradata2/yct -bash: cd: /oradata2/yct: Permission denied |
yuechaotian2008-12-09 22:13:49
而如果只有执行权限(x),那么其他用户是可以进入该目录的,但却没有权限查勘该目录下的内容: [root@localhost yuechaotian]# pwd /home/yuechaotian [root@localhost yuechaotian]# ll 总用量 4 drwx--x--x 3 root root 4096 12月 7 14:52 study [root@localhost yuechaotian]# su - yuechaotian [yuechaotian@localhost ~]$ cd /home/yuechaotian/ [yuechaotian@localhost ~]$ ll 总用量 4 drwx--x--x 3 root root 4096 12月 7 14:52 study [yuechaotian@localhost ~]$ cd study/ [yuechaotian@localhost study]$ ll ls: .: 权限不够 [yuechaotian@localhost study]$