永久 chgrp 目录
我正在运行具有 root 访问权限的 CentOS 5.0 服务器。 /var/www
文件夹最初是以 root 为所有者和组递归设置的。因此,我执行了 chgrp -R webdevs /var/www
和 chmod -R g+rwx /var/www
命令来为 webdevs 组的所有成员提供读/写权限使用权。这些更改按照所有预先存在的文件的要求起作用。但是,当用户 examplewebdev 在 /var/www
目录中创建新文件时,组默认为 examplewebdev 而不是 webdevs< /em>.如何更改新文件创建的默认值?
I'm running a CentOS 5.0 server with root access. The /var/www
folder was originally set recursively with root as the owner and group. So I did a chgrp -R webdevs /var/www
and a chmod -R g+rwx /var/www
command to give all members of the webdevs group read/write access. These changes work as required for all preexisting files. However, when user examplewebdev creates a new file in the /var/www
directory, the group defaults to examplewebdev instead of webdevs. How do I change the defaults for new file creation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用 ACL:
man setfacl
。Try to play with ACLs:
man setfacl
.http://www.vanemery.com/Linux/ACL/linux- acl.html#default
http://www.vanemery.com/Linux/ACL/linux-acl.html#default
我使用“newgrp”命令,但我认为它仅适用于您当前所在的 shell。
I use 'newgrp' command but I think it applies only in the shell you are currently in.