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,系统服务运维,运维,linux,chown,chmod,chgrp)