Technology Software

What Does Zombie Mean in Ubuntu?

    Why Terminate Zombie Processes?

    • Zombie processes take up room in your process list. Ubuntu Linux will eventually purge these processes from the list, but they add additional complexity to your process queries through the extra space they take. Additionally, an extremely active system may run out of available process handles if these processes are not purged.

    How Do I Identify a Zombie Process?

    • Zombies can be identified by opening a new terminal window and typing "ps -el | grep 'Z'" (without the quotation marks). All processes in a "zombie" status will be displayed. Zombie processes will have the text <defunct> in the label, clearly identifying them. Additionally, the PPID, or Parent Process ID, of the application that spawned the zombie process is displayed.

    How are Zombie Processes Removed?

    • Ubuntu Linux routinely purges zombie processes from the system automatically and no action is required. You can purge zombie processes manually by sending a SIGCHILD command to the parent of the zombie. To do this, type "kill -s SIGCHLD <pid>" (without the quotation marks). Replace <pid> with the ID number of the zombie's parent process, which is displayed in the list that identifies the process as a zombie.

    Orphaned Zombie Processes

    • A zombie can be orphaned when its parent process dies suddenly and it has not been reaped by the system. The system will reap this process automatically, but you can quickly regain control of the situation and reap the process by restarting the application or process that originally spawned it.

Related posts "Technology : Software"

How to Put My FB to Sleep

Software

Some Useful Tips to Avoid Hack Attacks

Software

CREN

Software

How to Transfer DVD to 3GP

Software

How to Troubleshoot if My Computer Only Types in Wingdings

Software

What Cloud Computing Really Means

Software

How to Make More Points Visible on Scatter Plots in Excel for Mac

Software

How to Make a Spreadsheet Without Excel

Software

Enhancing VOB Videos to MPEG Format

Software

Leave a Comment