Q. How do I logout Linux user?
A. root or admin user can logout any user forcefully. If you are logged in as vivek and just wanted to logout or logoff, type logout command or hit CTRL+D:
$ logout
You will be logout of a login shell session or secure shell session.
Task: Linux logout user
If you would like to logout other users, you must login as root user. Next you need to use pkill command.
pkill command syntax
pkill -KILL -u {username}
To see list of logged in user type who or w command:
# who
OR
# w
To logout user called raj, enter:
# pkill -KILL -u raj
OR
$ sudo pkill -KILL -u raj
For more information read our article - Howto: Linux kill and logout users
- Email FAQ to a friend
- Printable version
- Rss Feed
- Last Updated: 5-15-07

{ 3 comments… read them below or add one }
Thankssssss man !
Its one of things i hardly ever remember, never mind that i take the effort to write it down, but if you do need it a post like this is worth a million…
thanks
Works in OpenBSD 4.5 also. Great tip.