I can't figure out how to kill this process. I ran du
, but it took too long so I tried to kill it. It didn't die. I've tried SIGKILL, SIGSTOP, SIGINT, etc, with no effect (can't kill it, can't stop it). It is not in D
or Z
state, as you can see in the following top
output:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
12047 alex 39 19 5656 496 408 R 99.6 0.0 209:10.04 du --max-depth=1 -h
Since it won't stop, I can't attach to it with gdb either.
Does anyone have any ideas how to kill this without rebooting?
ps -l -p 12047
- specifically the value of the WCHAN column. My guess is the process is in "disk wait", which makes it unkillable. – Jul 14 '12 at 04:02D
state, and not result in high CPU, wouldn't it? – lxop Jul 14 '12 at 05:03sshfs
mount? – Thor Jul 14 '12 at 11:28