Skip to main content
deleted 1 characters in body
Source Link
Josh
  • 8.8k
  • 14
  • 59
  • 77

It sounds like you might have a [zombie process] (http://en.wikipedia.org/wiki/Zombie_processzombie process). This is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process dies or reacts to the death of its child.

You can see if the process is a zombie by using top or the following command:

ps aux | awk '$8=="Z" {print $2}' 

It sounds like you might have a [zombie process] (http://en.wikipedia.org/wiki/Zombie_process). This is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process dies or reacts to the death of its child.

You can see if the process is a zombie by using top or the following command:

ps aux | awk '$8=="Z" {print $2}' 

It sounds like you might have a zombie process. This is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process dies or reacts to the death of its child.

You can see if the process is a zombie by using top or the following command:

ps aux | awk '$8=="Z" {print $2}' 

It sounds like you might have a [zombie process] (zombie processhttp://en.wikipedia.org/wiki/Zombie_process). ThisThis is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process dies or reacts to the death of its child.

You can see if the process is a zombie by using top or the following command:

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

It sounds like you might have a zombie process. This is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process dies or reacts to the death of its child.

You can see if the process is a zombie by using top or the following command:

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

It sounds like you might have a [zombie process] (http://en.wikipedia.org/wiki/Zombie_process). This is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process dies or reacts to the death of its child.

You can see if the process is a zombie by using top or the following command:

ps aux | awk '$8=="Z" {print $2}' 
removed needlessly dangerous suggestion of killing the process
Source Link
Gilles 'SO- stop being evil'
  • 865.9k
  • 205
  • 1.8k
  • 2.3k

It sounds like you might have a zombie process. If you do, you could try killing This is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process, dies or, you may have reacts to reboot the systemdeath of its child.

You can see if the process is a zombie by using top or the following command:

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

It sounds like you might have a zombie process. If you do, you could try killing the parent process, or, you may have to reboot the system.

You can see if the process is a zombie by using top or the following command:

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

It sounds like you might have a zombie process. This is harmless: the only resource a zombie process consumes is an entry in the process table. It will go away when the parent process dies or reacts to the death of its child.

You can see if the process is a zombie by using top or the following command:

ps aux | awk '{ print $8 " " $2 }' | grep -w Z 
added 136 characters in body; added 1 characters in body
Source Link
Josh
  • 8.8k
  • 14
  • 59
  • 77
Loading
Source Link
Josh
  • 8.8k
  • 14
  • 59
  • 77
Loading