This process is marked as <defunct> and kill -9 doesn't kill it. What can I do? Why can't this process be killed?
|
|
||||
|
migrated from stackoverflow.com Nov 25 '11 at 17:56
|
This kind of a process is called a zombie process. Kill command has no effect on zombie processes. Technically, they are dead, and you see them just because they still have an entry in the process table. To remove zombies from a system, the |
|||
|
|
|
Defunct means, that it's a zombie process - it's not really working, it just awaits it's parent process to call
To get rid of zombies you can:
- kill the parent process (maybe console, where you typed in your command)
- call |
|||
|
|