There is a contradiction there: zombies are processes that got disconnected and as will not have a process to monitor. ps aux | awk '"[Zz]" ~ $8 { printf("%s, PID = %d\n", $8, $2); }' will list zombies but I do not believe you can use htop for that.
– RinzwindOct 24 '18 at 17:02
1 Answers1
8
You should click on S column or choose F6 (SortBy) and then select STATE.
ps aux | awk '"[Zz]" ~ $8 { printf("%s, PID = %d\n", $8, $2); }'will list zombies but I do not believe you can use htop for that. – Rinzwind Oct 24 '18 at 17:02