Linux

刪除 /etc/group 中的使用者

  • December 10, 2018

我必須在我的樹莓上安裝 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刪除。

改為使用gpasswd

gpasswd -d user group

它還具有將使用者添加到組的選項

gpasswd -a user group

為每個使用者執行usermod -G(注意:沒有-a),並列出她/他必須保留的組列表。man 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.

引用自:https://unix.stackexchange.com/questions/487096