Entering edit mode
11 months ago
keke
•
0
When i run cellranger count, the process become dead. The process become defunct after I kill cr_lib
and mrjob
.
And I could not access to working directory of cellranger. But I could access to other directories.
When I used top
to check the systeming status. The cpu loading is very high, but there is no tasks running currently, just found the three zombies.
I have tried kill all the process and parent process with sudo
, it is still not working.
How to kill the three zombie process or how to make the computer running as normal without rebooting
top - 17:04:01 up 9:13, 1 user, load average: 21.97, 21.41, 17.57
Tasks: 367 total, 1 running, 363 sleeping, 0 stopped, 3 zombie
keke 16170 1 0 16:15 ? 00:00:05 [mrp] <defunct>
keke 17841 16170 0 16:32 ? 00:00:00 [mrjob] <defunct>
keke 17848 17841 16 16:32 ? 00:04:18 [cr_lib] <defunct>
You could try to
SIGKILL
by usingkill -9 PID
.