我的系統(tǒng)里出現(xiàn)了zombie, 看起來需要處理;
查找了一些相關(guān)資料, 比較符合邏輯的處理方式:
ps aux | grep -w Z # returns the zombies pid
ps o ppid {returned pid from previous command} # returns the parent
kill -1 {the parent id from previous command}
https://stackoverflow.com/questions/16944886/how-to-kill-zombie-process