添加用户到组
usermod
usermod [options] LOGIN
- LOGIN:修改的用户;
- -G:移到某个组;
把 test 用户移到 zrf 用户组中:
zrf@ubuntu:~$ sudo usermod -G zrf test
zrf@ubuntu:~$ sudo cat /etc/group | grep zrf
zrf:x:1000:test
gpasswd
gpasswd [option] GROUP
- GROUP:组名;
- -a:用户名;
把 test 用户移到 zrf 用户组中:
zrf@ubuntu:~$ sudo gpasswd -a test zrf
zrf@ubuntu:~$ sudo cat /etc/group | grep zrf
zrf:x:1000:test
移除组的用户
把 test 用户从 zrf 用户组中移除:
zrf@ubuntu:~$ sudo gpasswd -d zrf test
zrf@ubuntu:~$ sudo cat /etc/group | grep zrf
zrf:x:1000:
标签:用户组,sudo,用户,zrf,移除,test,ubuntu
From: https://www.cnblogs.com/Enziandom/p/16743586.html