更改文件拥有者 -R 是递归的意思
chown [ -R ] root.work test
将test 文件 改为 拥有者 root , 用户组 work。
chown [ -R ] work test
将test 文件 改为 拥有者 root
更改用户组 -R 是递归的意思
chgrp nagios test
将test 文件 用户组 改为 nagios。
更改文件属性 chmod
用数字修改
chmod 776 test
还有一种使用 符号类型改变文件权限
chmod u=rwx,g+r,o+x test
u=rwx,g+r,o+x这一段文字之前不能有空格
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-10 13:17:13