The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 09-01-2008
kermit's Avatar
kermit kermit is offline
Registered User
  
 

Join Date: Jan 2007
Posts: 24
When kill [pid] does not work...

Hi,

On my Linux machine, using Bash, I sometimes run into a situation where doing the following does not seem to work at all.

Code:
kermit@fastbox ~ $ ps -A | grep firefox-bin
 5375 ?        00:06:57 firefox-bin <defunct>
 5624 ?        00:00:00 firefox-bin
kermit@fastbox ~ $ kill 5624
kermit@fastbox ~ $ ps -A | grep firefox-bin
 5375 ?        00:06:57 firefox-bin <defunct>
 5624 ?        00:00:00 firefox-bin
kermit@fastbox ~ $
Why is kill not killing the process?