The UNIX and Linux Forums  


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 -->
  #2 (permalink)  
Old 09-01-2008
sysgate's Avatar
sysgate sysgate is offline Forum Advisor  
Unix based
  
 

Join Date: Nov 2006
Location: Bulgaria
Posts: 1,323
What most often "defunct" means is a 'zombie' , so you have to 'kill'em all' you can either "pkill -9 firefox" - guaranteed that all processes with firefox in their names will die, though it's dangerous, or, you can 'kill -9' which is not the most elegant way, but it works. The regular kill is the default, nice way, whereas -9 flag cannot be ignored.