what is jumbi process?

Answer Posted / jijesh poyil

A zombie process or defunct process is a process that
has completed execution but still has an entry in the
process table.
When a process ends, all of the memory and
resources associated with it are deallocated so they can be
used by other processes. However, the process's entry in
the process table remains. The parent can read the child's
exit status by executing the wait system call, at which
stage the zombie is removed. The wait call may be
executed in sequential code, but it is commonly executed in
a handler for the SIGCHLD signal, which the parent
receives whenever a child has died.After the zombie is
removed, its process ID and entry in the process table can
then be reused. However, if a parent fails to call
wait, the zombie will be left in the process table.
Answer
# 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 ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where is command history stored in linux?

538


Explain trap command of linux?

578


What is the symbol of linux?

553


You locate a command in the /bin directory but do not know what it does. What command can you use to determine its purpose

580


How do I get to root directory in linux?

573






How do I change shell in linux?

524


Explain grep command.

599


How do I find the umask value in linux?

513


What is df -i command?

553


You want to copy the user’s home directories to a new location. Which of the following commands will accomplish this?

568


What is the bash in linux?

542


What are the commands in linux?

533


Explain about the command lynx?

678


Explain getopts command of linux?

595


What is parallel ssh?

539