我做了以下事情:
sudo usermod -a -G root userA
sudo su - root
cd /
chmod 775 root
ls -aln
-- drwxrwxr-x. 6 0 0 4096 Sep 13 22:04 root
我可以cd /root
从我的userA
,但我不能创建目录。
mkdir testing
mkdir: cannot create directory ‘testing’: Permission denied
为了完整性:
id userA
uid=624981(userA) gid=624981(userA) groups=624981(userA),10(wheel),0(root)
我缺少什么?
答案1
为了使用户添加到组中生效,您必须注销并重新登录。