Linux & Ubuntu/Linux tips

[linux]check and kill all process of certain user

알 수 없는 사용자 2007. 12. 11. 09:34
check all process of certain user :


$ top -u johndoe
OR
$ top -u 500
OR
$ top -U johndoe








kill all process of certain user:
kill -9 `ps -u <username> -o "pid="`