when zombie process fully cleared?

Answers were Sorted based on User's Feedback



when zombie process fully cleared?..

Answer / vimal kumar k,technomenace.com

When the server gets restarted!

Is This Answer Correct ?    9 Yes 3 No

when zombie process fully cleared?..

Answer / ajit mohan b

Do a ps and identify the zombie processes

# ps -el | grep 'Z'


Occasionally, these processes are in such a state that the
only way to get rid of them is to reboot to clear them.

In most cases, you can get rid of a zombie by normal means,
"kill -15 zombie PPID", "kill -9 zombie PPID".

Is This Answer Correct ?    8 Yes 3 No

when zombie process fully cleared?..

Answer / naggy

kill -s SIGCHLD ppid

ppid = parent process ID

Is This Answer Correct ?    0 Yes 0 No

when zombie process fully cleared?..

Answer / ashish

Zombie process are the ones for which its parent process
has lost track of.
You can view the zombie processes by using
ps -auwx | grep Z

And to kill them use
kill -9 pid

But normally this wont work. So we will first have to kill
its parent process. And to do this you can use

ps -l pid

to list the pid of the parent process(indicated by PPID)
and then use (kill -9 pid) to terminate it.
If in any case the parent process is the init(1) process
itself, then there is no other option than to reboot the
system.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Linux Commands Interview Questions

You wish to print the file vacations with 60 lines to a page. Which of the following commands will accomplish this?

0 Answers  


How commands work in linux?

0 Answers  


How do you run command every time a file is modified?

0 Answers  


You suspect that you have two commands with the same name as the command is not producing the expected results. What command can you use to determine thelocation of the command being run?

0 Answers  


How is grep so fast?

0 Answers  






What is command example?

0 Answers  


What is parallel ssh?

0 Answers  


What is the default number of shell commands saved in the history list of .cshrc file?

0 Answers  


what is mean by system calls

4 Answers   Infotech,


How do display error messages instantly when command fails?

2 Answers   Satyam,


How do make computer faster?

0 Answers  


Explain about chmod options filename?

0 Answers  


Categories