我想添加一个组(例如' muppets')以及将apache作为文件夹的所有者;但是,以下命令似乎不会将组添加到权限中。我添加错误了吗?
chown -R apache:muppets html/wp-content
或
chown -R apache.muppets html/wp-content
答案 0 :(得分:0)
您可以使用以下命令更改文件或目录的组所有权:
chgrp group_name file/directory_name
您必须是要将所有权更改为的群组的成员。
不是专家,请检查以下资源:
http://www.mcsr.olemiss.edu/unixhelp/tasks/change_own.html
http://www.yolinux.com/TUTORIALS/LinuxTutorialManagingGroups.html