[ kill process in linux ]

How do I kill process in Linux.

::kill command::

1. Use this command.

# ps -ef | grep -i <your-target-process>

OR

# ps aux | grep <your-target-process>

e.g: # ps -ef | grep -i jboss

2. Then, choose your target Process ID

# kill 9821

OR

# kill -9 9821

note: -9 is special Kill signal, which kill the process

3. Done

::killall command::

1. Use this command.

# killall -9 <your-target-process>

e.g: # killall -9 firefox

0 Responses to “[ kill process in linux ]”



  1. No Comments Yet

Leave a Reply




 

October 2008
M T W T F S S
« Jan    
 12345
6789101112
13141516171819
20212223242526
2728293031