Kill or kick off a user in linux

Published by

Posted on December 04, 2007

get the user process id by issuing the following command.

ps ax | grep [uname]

replace [uname] witht the actual username of the person you are trying to kill

locate the pid and type kill [pid] replace [pid] with the actual numbers shown kill 8544

ADD A COMMENT