创建用户
adduser newuser
The **adduser** command creates a new user, plus a group and home directory for that user.
添加进入sudo组
usermod -aG sudo newuser
The **-aG** option tells the system to append the user to the specified group. (The -a option is only used with G.)
或者
gpasswd -a user group
删除sudo
gpasswd -d user group
列出用户所属的组
groups newuser
删除用户及其目录
userdel -r username
