-g, --gid GROUP force use GROUP as new primary group -G, --groups GROUPS new list of supplementary GROUPS -g是更改用户的主组 -G是将用户加到新的组里 usermod -g groupname username usermod -G groupname username
【故障现象】用groupdel删除test组时,报以上错误。原因为test组中有lxh1用户(lxh1的主组)。 【解决办法】更改lxh1的主组后即可删除。 1 2 3 4 5 6 7 8 root@oldboy ~$tail -n 2 /etc/group lxh:x:500: test:x:888: root@oldboy ~$usermod -g lxh lxh1 root@oldboy ~$groupdel test root@o...
groupdel: cannot remove the primary group of user 'rundeck' /Stage[main]/Rundeck::Install/Group[rundeck]/ensure change from present to absent failed: Could not delete group rundeck: Execution of '/usr/sbin/groupdel rundeck' returned 8: groupdel: cannot remove the primary group of user 'rundeck...
如果指定的用户组不存在,则会显示"groupdel: group ‘用户组名’ does not exist"错误。 如果指定的用户组仍然有成员存在,则会显示"groupdel: cannot remove the primary group of user ‘用户名’"错误。这是因为用户组仍然是某些用户的主组,必须先将这些用户从该组中移除,然后才能成功删除用户组。
groupdel:cannot remove the primary group of user 'temp' 可以看到,groupdel 命令删除 temp 群组失败,且提示“不能删除 temp 用户的初始组”。如果一定要删除 temp 群组,要么修改 temp 用户的 GID,也就是将其初始组改为其他群组,要么先删除 temp 用户。
groupdel: cannot remove user's primary group,当使用Groupdel一个组的时候,如果有用户把这个组当作主组,那么删除这个组时就会出现这个报错b信b息。解
groupdel:cannot remove the primary group of user 'temp' 可以看到,groupdel 命令删除 temp 群组失败,且提示“不能删除 temp 用户的初始组”。如果一定要删除 temp 群组,要么修改 temp 用户的 GID,也就是将其初始组改为其他群组,要么先删除 temp 用户。
groupdel: cannot remove the primary group of user 'tom' 因为“tom”是该用户组的主要成员,所以不能直接删除;否则就涉及到了其他权限问题。 此时我们可以通过以下命令来解决: usermod -G "" tom #把“Tom”的附加群体设置为空字符串即可。 然后再运行groupdel命令即可成功完成目标。
简介groupdel命令用户删除指定的用户组,使用很低,了解即可 说明 groupdel命令用户删除指定的用户组,使用很低,了解即可 格式 groupdel [option] [groupname] 示例 [root@localhost~]#groupdel skip#不能移除用户还存在的组 groupdel:cannot remove the primary group of user'skip' ...