How to Linux, Installations, Quick HOWTO, Installing Linux Software, Linux help, linux questions, support
Tuesday, 23 June 2009
Wednesday, 10 June 2009
How to Kill Zombie Process?
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
#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
Friday, 5 June 2009
Subscribe to:
Posts (Atom)