How to kill an unresponsive process in Unix
I am sure you would have come across Windows' processes that hang. And I am sure you know what to do. CTL + ALT + DEL and kill the process using the Task Manager. In this article, we'll how to do that on Unix using command line.
Here are the steps:
1) See the PID of the process that has hung and you want to kill. Execute the following command in the terminal.
ps aux
This command will list all the processes running on your system. Here is the format: