博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
groupdel: cannot remove the primary group of user 'lxh1'的解决办法
阅读量:5755 次
发布时间:2019-06-18

本文共 553 字,大约阅读时间需要 1 分钟。

【故障现象】用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@oldboy ~$tail -n 2 /etc/group
apache:x:48:
lxh:x:500:

【注意事项】

-g与-G区别

-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

本文转自 xoyabc 51CTO博客,原文链接:http://blog.51cto.com/xoyabc/1687511,如需转载请自行联系原作者

你可能感兴趣的文章
BOM
查看>>
LeetCode:Nim Game - 尼姆博弈
查看>>
iOS: Block的循环引用
查看>>
mysql实战02 | 日志系统:一条SQL更新语句是如何执行的?
查看>>
测试九 赛后感受
查看>>
ECC椭圆曲线详解(有具体实例)
查看>>
关于WechatApp学习总结
查看>>
Linux常见命令(二)
查看>>
document.write()的用法和清空的原因
查看>>
【EXLUCAS模板】【拓展卢卡斯详解】【组合数高级篇】LuoGu P4720
查看>>
PyCharm切换解释器
查看>>
一些基本的灰度变换函数
查看>>
12.12日个人工作总结
查看>>
jmp far ptr s所对应的机器码
查看>>
css详解1
查看>>
【转载】Presentation at from Yoshua Bengio
查看>>
MySQL类型转换
查看>>
HashSet HashMap 源码阅读笔记
查看>>
变量声明提升1
查看>>
UI前7天
查看>>