[root@localhost ~]# cd /home 注:进入/home 目录; [root@localhost home]# mkdir RedHatdir 注:创建一个目录redhatdir [root@localhost home]# touch redhatdir/test.txt 注:创建一个文件test.txt [root@localhost home]# chmod 700 redhatdir/ 注:修改redhatdir的权限,为属主可读可写可执行,属组和其它用户无权限; [root@localhost home]# ls -ld redhatdir/ 注:查看redhatdir的属性; drwx------ 2 root root 4096 04-25 13:01 redhatdir/ [root@localhost home]# ls -lr redhatdir/ 注:查看test.txt 文件的属性; 总计 0 -rw-r--r-- 1 root root 0 04-25 13:02 test.txt [root@localhost home]# su beinan 注:我们切换到普通用户beinan [beinan@localhost home]$ cd redhatdir/ 注:进入redhatdir目录,以beinan用户身份。 bash: cd: redhatdir/: 权限不够 [beinan@localhost home]$ more redhatdir/test.txt redhatdir/test.txt: 权限不够 |
[root@localhost home]# chmod 704 redhatdir/ [root@localhost home]# ls -ld redhatdir/ drwx---r-- 2 root root 4096 04-25 13:02 redhatdir [root@localhost home]# su beinan [beinan@localhost home]$ cd redhatdir/ bash: cd: redhatdir/: 权限不够 |
新闻热点
疑难解答