|
How to kill user processes on linux |
|
Written by pnyet
|
|
I don't have time to update this blog with a complete tutorial, I have ideas but can not write it. To fill the void that I will only write about how to kill a process owned by a user. In this scenario is I kill all procs listed by grepping a ps list for the username. And I just execute: $ sudo kill -9 `ps -u named -o "pid="` Thats all....
|