Answers for "How can you identify zombie processes on the Linux system"

3

How can you identify zombie processes on the Linux system

Zombie processes can be found easily with the ps -l command. 
Within the ps output there is a STAT column which will show the 
processes current status, a zombie process will have Z as the status. 
In addition to the STAT column zombies commonly have the words 
<defunct> in the CMD column as well.
Posted by: Guest on September-14-2020

Code answers related to "How can you identify zombie processes on the Linux system"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language