我有以下简单的脚本可以更改文件夹的所有权
more hola_config.sh
#!/bin/bash
chown -R hola:pola /home/darna
chmod -R 775 /home/darna
在 /etc/sudoers 中我添加了以下内容(super_hola 用户就像超级用户)
super_hola ALL=(ALL) NOPASSWD:ALL
但是当我运行脚本时
su super_hola
whoami
super_hola
sudo -u super_hola ./hola_config.sh
我从脚本中得到“chmod 不允许操作”
例子:
chmod: changing permissions of ‘/home/darna/linux.cvg: Operation not permitted
问题是
为什么超级用户super_hola
无法像 root 用户那样更改权限,以及我需要修复配置中的哪些部分才能让用户 super_hola 这样做
这里是用户和组 ID
id super_hola
uid=1001(super_hola) gid=1001(pola) groups=1001(pola),982(docker)
grep super_hola /etc/group
docker:x:982:super_hola
id -G super_hola
1001 982