Kill Unresponding Proccess
In Windows, we can go to task manager and kill unresponding proccess. How did we do in linux? Is there a task manager? Let's find the answer here.
find PID
First time to know is Proccess ID, that is number given to running proccess. Give this command to your shell something like this.
You'll get result like this
The PID is in italic. And to kill the process is just give the command below:
The option -9 is special kill the proccess.
find PID
First time to know is Proccess ID, that is number given to running proccess. Give this command to your shell something like this.
# ps -aux | grep opera
You'll get result like this
Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html
502 3815 2.1 37.9 168372 94132 ? S 12:36 5:50 /usr/lib/opera/9.24/opera -style klearlook
502 3828 0.0 0.2 2656 592 ? S 12:36 0:00 /usr/lib/opera/plugins/operaplugincleaner 3815
502 4227 6.2 7.2 50476 18060 ? SNl 16:58 0:14 /usr/lib/opera/plugins/operapluginwrapper 19 23 /usr/lib/mozilla/plugins/libflashplayer.so
root 4237 0.0 0.3 2952 792 pts/2 S+ 17:01 0:00 grep --color opera
The PID is in italic. And to kill the process is just give the command below:
# kill -9 4237
The option -9 is special kill the proccess.