删除/etc/group中的用户

删除/etc/group中的用户

我在我的树莓派上安装了Tor。

*:/home/bitcoin $ cat /etc/group | grep debian-tor
debian-tor:x:116:bitcoin,root,pi

我可以添加一个用户吗

sudo usermod -a -G debian-tor bitcoin

但我怎样才能删除呢?

我不想 root 和 pi 删除。

答案1

代替使用gpasswd

gpasswd -d user group

它还具有将用户添加到组的选项

gpasswd -a user group

答案2

为每个用户运行usermod -G(注意:不带),并提供他/她必须保留其成员身份的组列表。 :-aman usermod

   -G, --groups GROUP1[,GROUP2,...[,GROUPN]]]          

       If the user is currently a member of a group which is not listed, the user will be removed from the group.

相关内容