Zombie !!! How to Kill Zombie Processes ???

“On Unix and Unix-like computer operating systems, a zombie process or defunct process is a process that has completed execution but still has an entry in the process table, this entry being still needed to allow the process that started the zombie process to read its exit status. The term zombie process derives from the common definition of zombie—an undead person. In the term’s colorful metaphor, the child process has died but has not yet been reaped.” as stated in wikepedia article.

So u shud be now thinking of how to know which are zombie processes as there are plenty of processes running by system !!!

Here is the procedure to check which are the zombie processes. U can use the below commands for finding:

Use top command which shows how many zombie process are running and which are they can be get by seeing the STAT column which reads a ‘Z’

Or

Use the ps command as shown below which will display the PID:

# ps aux | awk '{ print $8 " " $2 }' | grep -w Z

Output:

Z 8751

Now you can kill these process using the PID:

kill -9 8751

Popularity: 76% [?]

One Response to “Zombie !!! How to Kill Zombie Processes ???”

  1. Hey awesome blog! Know anyone who would be interested in part time admin’ing a Linux box? Hit me up!

Leave a Reply

Close
E-mail It
Blogarama - The Blog Directory Directory of Computers/Tech Blogs Add to Technorati Favorites Find Blogs in the Blog
Directory Software blogs Top Blogs British Blog Directory. FindingBlog - Blog Directory blog search directory blog sweet blogoriffic.com Top100 Bloggers - Top Blog Directory - Blog Top list Blogs Blog Directory 5starblogs Age less highclassblogs.com kmax.ws Blog Directory & Search engine Blogs Directory All-Blogs.net directory Webfeed (RSS/ATOM/RDF) registered at http://www.feeds4all.com Business Blogs & Directory LS Blogs

Rate Me on BlogHop.com!
the best pretty good okay pretty bad the worst help?

-->