/etc/group에서 사용자 삭제

/etc/group에서 사용자 삭제

내 Raspberry Pi에 Tor가 설치되어 있습니다.

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

사용자를 추가할 수 있어?

sudo usermod -a -G debian-tor bitcoin

그런데 어떻게 삭제할 수 있나요?

루트와 파이가 삭제되는 것을 원하지 않습니다.

답변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.

관련 정보