search and kill specific process in linux
        by Ramya[ Edit ] 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