Accueil > Système > How to Kill Zombie Process?

How to Kill Zombie Process?

13/02/2024 Categories: Système Tags: ,
Print Friendly, PDF & Email

Source: Linux Addicted

Use Command Check Process:

#top

or

#ps aux

or

#ps -el

or

#ps aux | awk '{ print $8 " " $2 }' | grep -w Z

or

#ps -elf | grep Z

or

#ps -ef | grep firefox

Output:

Z 6502
Z 8320
Z 6985

Use Command kill zombie Process:

# kill -9 6985
Lire aussi:  Linux/Unix: OpenSSH Multiplexer To Speed Up OpenSSH Connections
Categories: Système Tags: ,
Les commentaires sont fermés.