The process with PID 14420 is a zombie process and its parent id is 1(init). I want to clear 4436MiB memory occupied by this zombie process without rebooting.
How should I proceed?
The process with PID 14420 is a zombie process and its parent id is 1(init). I want to clear 4436MiB memory occupied by this zombie process without rebooting.
How should I proceed?
You HAVE to reboot as there is no other way, since the parent is init.
If the zombie process is created every time, all you can do is, you can log the processes and find out the program responsible for this.
Use this command to list all the processes on the GPU (on Linux).
sudo fuser -v /dev/nvidia*sudo fuser -v /dev/nvidia*
and find PID from the listed processes and simply use
kill <PID> .
This will kill process with specified ID.