Command to kill a process in Linux - Linux Views : 2307
Tagged in : Linux
0 0
Send mail
hi, in order to view all the processes running currently in a linux machine use following command:
ps -aux


To view process id of a particular process among all the processes running currently in a linux machine:
ps -aux | firefox


To kill a particular process:
kill -9 processid
By deva, On - 2007-11-16



    Login to add Comments .