Sometimes when there are too many users logged in it can cause my computer to become very slow and laggy due to low amount of available RAM. I would like to be able to quickly log out the other users from the command line instead of manually switching into each user and logging them out.
Is this possible?
this is one answer
that give you the PID
Then you can kill the user session.
You may use
who
to check which users are logged in:You can log-out the user by sending the
KILL
signal to the user-process with:(which is same as
sudo pkill -9 -u <username>
)example:
(to kill a guest session user named
guest-2Rw4Lq
)Note (kudos to pbhj): If you get locked in a console, use Ctrl+Alt+F7 to get back to the GUI.
then
PID (process ID) is the four or five digit number at the end of the user readout (91228)