Linux 权限管理
Posted 悟能的师兄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 权限管理相关的知识,希望对你有一定的参考价值。
一:chmod
文件、文件夹授权-可读可写可执行
#将整个nginx文件夹及文件夹内所有文件的权限全部变更为 775
[root@localhost nginx]# chmod -R 755 nginx/
二:chgrp
文件、文件夹归属用户组hsouquan
#将整个nginx文件夹及文件夹内所有文件的用户改成root
[root@localhost nginx]# chown -R root nginx/
三:chown
文件、文件夹归属哪个用户
#将整个nginx文件夹及文件夹内所有文件的用户组改成root
[root@localhost nginx]# chgrp -R root nginx/
以上是关于Linux 权限管理的主要内容,如果未能解决你的问题,请参考以下文章