![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| zombie process | jeenat | Linux | 5 | 03-28-2008 07:36 AM |
| how to handle a zombie process | mridula | High Level Programming | 1 | 12-06-2005 05:47 PM |
| zombie daemon process!! | rish2005 | UNIX for Advanced & Expert Users | 1 | 11-25-2005 09:59 AM |
| Zombie process | swhitney | UNIX for Advanced & Expert Users | 2 | 10-22-2004 05:12 PM |
| Zombie process | orca | UNIX for Dummies Questions & Answers | 8 | 04-26-2002 02:54 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hey Guys,
I am not really new to Unix/Linux however I was never taught how to spot a zombie process. I used top to check out the processes I was running and how the resources were looking and in the upper right it said 1 zombie, I have attached a jpeg of it. Thank you in advance for your help. Michael |
|
||||
|
Most ps implementations show it as <defunct>.
So you could simply Code:
$ ps -ef | grep defunct which well behaved programs simply don't produce Code:
$ ps -e -o pid= -o state=|awk '$2=="Z"{print$1}'|tr \\040 ,|xargs ps -fp
|
|
||||
|
Quote:
Michael |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|