'Top'에 해당되는 글 1

  1. 2007.12.11 [linux]check and kill all process of certain user
Linux & Ubuntu/Linux tips | Posted by 알 수 없는 사용자 2007. 12. 11. 09:34

[linux]check and kill all process of certain user

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="`