2

recently I did a sudo usermod -a -G docker $USER command. It made my linux behave funny, getting stuck at finishing screen of restart, not opening chrome a single time. I would like to undo it. didn't find anywhere online how to do it. would love some help!

thx in advance

1 Answer 1

4

You can remove $USER from docker group -

gpasswd -d $USER docker

Ref - https://linux.die.net/man/1/gpasswd

2

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.