可能的重复:
如何为群组添加写权限?
在 Centos 6 上,我试图授予用户mitch
对/var/www/http
.
我做了addgroup www
然后chmod -R 775 /var/www/html
然后groupmod -g www mitch
做了chgrp -R www /var/www/html
但是当我进入 mitch 上的 /html 并尝试创建一个文件时touch
显示“权限被拒绝”。
有人可以帮助我让任何人都www
能够在 html 目录中创建和删除吗?
drwxr-xr-x. 6 root root 4096 Feb 13 2012 .
drwxr-xr-x. 22 root root 4096 Sep 29 23:30 ..
drwxr-xr-x. 2 root root 4096 Feb 13 2012 cgi-bin
drwxr-xr-x. 3 root root 4096 Oct 1 21:23 error
drwsrwsr-x. 2 root www 4096 Oct 2 16:15 html
drwxr-xr-x. 3 root root 4096 Oct 2 16:13 icons
是 /var/www 目录的 ls -la 输出
答案1
在文件夹 /var/www/html 中检查“.”的权限。 '文件夹'。可能是 mitch 对此没有相同的权限,因此无法删除/修改该文件夹中的内容,但由于您之前递归地运行了 chmod,所以 mitch 在 /var/www/html 的所有子目录中都拥有 775 权限。
修理:
cd /var/www/html
chgrp www .
chmod 775 .