69.0k views
0 votes
How to kill zombie process in linux

User Girisha C
by
7.2k points

1 Answer

3 votes

Final answer:

To kill a zombie process in Linux, use the 'kill' command followed by the process ID (PID) of the zombie process. Identify the zombie process using the 'ps' command and then terminate it.

Step-by-step explanation:

To kill a zombie process in Linux, you can use the 'kill' command followed by the process ID (PID) of the zombie process. First, you need to identify the zombie process by using the 'ps' command. Once you have the PID, you can run the 'kill' command, followed by the PID, to terminate the zombie process.

For example, if the PID of the zombie process is 12345, you would run the command:

kill 12345

User Onuriltan
by
6.9k points