1

I have done

sudo usermod -a -G wireshark user

And then I have rebooted the system (kubuntu). Now, when entering the password for the GUI, kubuntu crashes and returns to the login screen. However, I can login from the console.

How can I undo this command?

black
  • 121

1 Answers1

1

You can undo it by

sudo deluser user wireshark

but it is not related to your login loop problem.

For Rinzwind from man deluser

deluser [options] user group

 ....

Remove a user from a specific group
       If  called  with  two  non-option arguments, deluser will remove a user
       from a specific group.

--

pilot6@Pilot6:~$ sudo deluser pilot6 vboxusers
Removing user `pilot6' from group `vboxusers' ...
Done.
Pilot6
  • 90,100
  • 91
  • 213
  • 324