search and kill specific process in linux

by Ramya 2015-04-04 17:03:34

if you are not able to find the process listed under top -c command, you can search it using grep command,
ps aux | grep 
for eg,
ps aux | grep firefox
it will list the firefox process running with
the pid....

then kill the process using kill command as,
sudo kill -9 
5229
like
0
dislike
0
mail
flag

You must LOGIN to add comments