C/C++教程

Centos7目录&文件权限快速配置

本文主要是介绍Centos7目录&文件权限快速配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

修改文件/目录所属组:

[root@localhost app]# chgrp test 111111.txt

-------------------------------------------------------------------------------------------------------------------------

修改文件/目录所属人:

[root@localhost app]# chown test 111111.txt

-------------------------------------------------------------------------------------------------------------------------

修改文件/目录所属人&组:

[root@localhost app]# chown admin:app 111111.txt

-------------------------------------------------------------------------------------------------------------------------

递归修改目录所属人&组:(R参数大写,意思为递归目录下所有目录与文件)

[root@localhost app]# chown -R admin:app 111
[root@localhost app]# ll
drwxr-xr--.  2 admin app        21 Jan 19 17:18 111

-------------------------------------------------------------------------------------------------------------------------

修改文件为用户admin可读 可写 可执行,

app组为可读 不可写 可执行,

其他用户&组不可读 不可写 不可执行

[root@localhost app]# chmod 750 111111.txt
[root@localhost app]# ll
-rwxr-x---.  1 admin app          0 Jan 19 16:42 111111.txt

-------------------------------------------------------------------------------------------------------------------------

修改文件为用户admin可读 可写 可执行,

app组为可读 不可写 可执行,

其他用户&组不可读 不可写 不可执行

[root@localhost app]# chmod 750 111111.txt
[root@localhost app]# ll
-rwxr-x---.  1 admin app          0 Jan 19 16:42 111111.txt

-------------------------------------------------------------------------------------------------------------------------

修改文件为用户test可读 可写 可执行,

test组为可读 不可写 可执行,

其他用户&组可读 不可写 不可执行

[root@localhost app]# chmod -R 754 111
[root@localhost app]# ll
drwxr-xr--.  2 test  test        21 Jan 19 17:18 111

这篇关于Centos7目录&文件权限快速配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!