Linux-用户加到用户组
新建用户
- useradd -m starc
- passwd asdasd
将用户添加到sudo组
方法一
- cd /etc/sudoers
- chmod u+w sudoers
- vim sudoers
- Line: root ALL=(ALL) ALL
- chmod u-w sudoers
方法二
-
usermod -a -G sudo starc
-
【参考链接】https://blog.csdn.net/qq_37933685/article/details/81168689