Guest_imported
New member
- Jan 1, 1970
- 0
Does anyone have any handy tips on how to monitor hanging/zombie processes ?
I thought about combining the "ps" command with awk, but it's not really very helpful (assumes a hanging process has a PPID of 1) :
ps -ef |awk '{if ( $3= 1) print $1," "$2," " $3," "$5, " "$8 }' .. etc
Does anyone have any better ideas ?
Thanks in advance,
axepert
I thought about combining the "ps" command with awk, but it's not really very helpful (assumes a hanging process has a PPID of 1) :
ps -ef |awk '{if ( $3= 1) print $1," "$2," " $3," "$5, " "$8 }' .. etc
Does anyone have any better ideas ?
Thanks in advance,
axepert