前端之家收集整理的这篇文章主要介绍了
linux – 如何为多个用户提供写权限?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
您可以更改
文件组:
groupadd webusers
usermod -aG webusers the_user_name
chgrp -R webusers the_directory
chmod g+s the_directory
如果这是基于RedHat的发行版,您可以使用setfacl在没有组的情况下执行此操作,并将其设置为默认情况下:@H_403_3@
setfacl -R -m user:the_username:rwx directory_name
setfacl -d -R -m user:the_username:rwx directory_name
原文链接:https://www.f2er.com/linux/397935.html