玩转并理解linux中的文件/目录的rwx权限

玩转并理解linux中的文件/目录的rwx权限linux是一个相对安全的系统,其中的权限更是无处不在。在本文中,我们来谈谈linux中的文件/目录的rwx权限。为了简便起见,我们仅仅以文件owner的rwx为例。一.文件的rwx权限分别是什么意思?1.r权限:可读权限,验证如下:[taoge@localhostlearn_c]$ls-ltotal0[t

大家好,又见面了,我是你们的朋友全栈君。

 

        linux是一个相对安全的系统, 其中的权限更是无处不在。 在本文中, 我们来谈谈linux中的文件/目录的rwx权限。 为了简便起见, 我们仅仅以文件owner的rwx为例。

 

        一. 文件的rwx权限分别是什么意思?

         1. r权限:可读权限, 验证如下:

 

 [taoge@localhost learn_c]$ ls -l

total 0

[taoge@localhost learn_c]$ echo hello > a.txt

[taoge@localhost learn_c]$ ls -l

total 4

-rw-rw-r– 1 taoge taoge 6 May  6 03:51 a.txt

[taoge@localhost learn_c]$ chmod 000 a.txt 

[taoge@localhost learn_c]$ ls -l

total 4

———- 1 taoge taoge 6 May  6 03:51 a.txt

[taoge@localhost learn_c]$ cat a.txt 

cat: a.txt: Permission denied

[taoge@localhost learn_c]$ chmod u+r a.txt 

[taoge@localhost learn_c]$ ls -l

total 4

-r——– 1 taoge taoge 6 May  6 03:51 a.txt

[taoge@localhost learn_c]$ cat a.txt

hello

[taoge@localhost learn_c]$ 

 

 

 

         2. w权限: 可写权限, 验证如下:

 

 [taoge@localhost learn_c]$ ls -l

total 0

[taoge@localhost learn_c]$ touch a.txt

[taoge@localhost learn_c]$ ls -l

total 0

-rw-rw-r– 1 taoge taoge 0 May  6 03:56 a.txt

[taoge@localhost learn_c]$ chmod 000 a.txt

[taoge@localhost learn_c]$ ls -l

total 0

———- 1 taoge taoge 0 May  6 03:56 a.txt

[taoge@localhost learn_c]$ chmod u+w a.txt

[taoge@localhost learn_c]$ ls -l

total 0

–w——- 1 taoge taoge 0 May  6 03:56 a.txt

[taoge@localhost learn_c]$ echo hello > a.txt

[taoge@localhost learn_c]$ cat a.txt

cat: a.txt: Permission denied

[taoge@localhost learn_c]$ chmod u+r a.txt

[taoge@localhost learn_c]$ cat a.txt

hello

[taoge@localhost learn_c]$ 

 

 

 

     3. x权限:可执行权限, 验证如下:

 

 [taoge@localhost learn_c]$ ls -l

total 4

-rw-rw-r– 1 taoge taoge 65 May  6 04:02 test.c

[taoge@localhost learn_c]$ cat test.c 

#include <stdio.h>

int main()

{

printf(“good\n”);

return 0;

}

[taoge@localhost learn_c]$ gcc test.c 

[taoge@localhost learn_c]$ ls -l

total 12

-rwxrwxr-x 1 taoge taoge 4638 May  6 04:04 a.out

-rw-rw-r– 1 taoge taoge   65 May  6 04:02 test.c

[taoge@localhost learn_c]$ ./a.out 

good

[taoge@localhost learn_c]$ chmod 000 a.out 

[taoge@localhost learn_c]$ ./a.out

bash: ./a.out: Permission denied

[taoge@localhost learn_c]$ chmod u+x a.out 

[taoge@localhost learn_c]$ ./a.out 

good

[taoge@localhost learn_c]$ 

 
 
        

       二. 目录的rwx权限分别是什么意思?

        1. r权限:可读权限(可列举查看目录下的内容), 验证如下:

 

[taoge@localhost learn_c]$ ls -l

total 0 
[taoge@localhost learn_c]$ mkdir test

[taoge@localhost learn_c]$ ls -l

total 4

drwxrwxr-x 2 taoge taoge 4096 May  6 04:07 test

[taoge@localhost learn_c]$ touch ./test/a.txt

[taoge@localhost learn_c]$ ls ./test/

a.txt

[taoge@localhost learn_c]$ chmod u-r test/

[taoge@localhost learn_c]$ ls ./test/

ls: cannot open directory ./test/: Permission denied

[taoge@localhost learn_c]$ 

 

 

      2. w权限:可写权限(可以往目录中写东东, 比如文件), 验证如下:

 

 [taoge@localhost learn_c]$ ls -l

total 0

[taoge@localhost learn_c]$ mkdir test

[taoge@localhost learn_c]$ ls -l

total 4

drwxrwxr-x 2 taoge taoge 4096 May  6 04:13 test

[taoge@localhost learn_c]$ touch ./test/a.txt

[taoge@localhost learn_c]$ chmod u-w test

[taoge@localhost learn_c]$ touch ./test/b.txt

touch: cannot touch `./test/b.txt’: Permission denied

[taoge@localhost learn_c]$ 

 

 

     3. x权限: 可执行权限(可以cd进去), 验证如下:

 

 

 [taoge@localhost learn_c]$ ls -l

total 0

[taoge@localhost learn_c]$ mkdir test

[taoge@localhost learn_c]$ ls -l

total 4

drwxrwxr-x 2 taoge taoge 4096 May  6 04:17 test

[taoge@localhost learn_c]$ cd test/

[taoge@localhost test]$ cd –

/home/taoge/Desktop/learn_c

[taoge@localhost learn_c]$ chmod u-x test/

[taoge@localhost learn_c]$ cd test/

bash: cd: test/: Permission denied

[taoge@localhost learn_c]$ 
 
      

       好,最后我们再来看一个问题:在某目录test中创建一个文件或者删除一个文件, 需要test目录具备什么权限呢? 答曰:需要目录test具备wx权限, 验证如下:

 

 

 [taoge@localhost learn_c]$ ls -l

total 0

[taoge@localhost learn_c]$ mkdir test

[taoge@localhost learn_c]$ touch ./test/a.txt ./test/b.txt ./test/c.txt ./test/d.txt

[taoge@localhost learn_c]$ ls -l

total 4

drwxrwxr-x 2 taoge taoge 4096 May  6 04:33 test

[taoge@localhost learn_c]$ chmod u-r test/

[taoge@localhost learn_c]$ touch ./test/e.txt

[taoge@localhost learn_c]$ chmod u-w test/

[taoge@localhost learn_c]$ touch ./test/f.txt

touch: cannot touch `./test/f.txt’: Permission denied

[taoge@localhost learn_c]$ rm ./test/a.txt

rm: cannot remove `./test/a.txt’: Permission denied

[taoge@localhost learn_c]$ chmod u+w test/

[taoge@localhost learn_c]$ chmod u-x test/

[taoge@localhost learn_c]$ touch ./test/f.txt

touch: cannot touch `./test/f.txt’: Permission denied

[taoge@localhost learn_c]$ rm ./test/a.txt

rm: cannot remove `./test/a.txt’: Permission denied

[taoge@localhost learn_c]$ chmod u+x test/

[taoge@localhost learn_c]$ 

 

 

       因此, 如果某一目录test删除不掉, 很可能是因为其中有不可删除的文件, 从本质上来讲, 就是test自己没有wx权限了。

 

 

       好, 本文先闲谈到这里。

 

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/139708.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号