I've an annoying process that won't die:
ps -A | grep "nzbget"
gives me:
11394 pts/3 00:00:00 nzbget
If I try:
pkill nzbget (or 11394)
...I get no response and the process is still alive, top gives me:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
11394 asystem+ 20 0 125448 6244 4984 T 0.0 0.1 0:00.00 nzbget
I run nzbget with 'nzbget -s', if I do this after it is running (and I've tried to stop it), I get a [binding socket failed] error and all I can do is reboot.
How can I kill this off without rebooting?
try: pass except: pass
in loop in Python becomes an unkillable process. To stop them, usekill -9
orkillall -s SIGKILL dude
orpkill -9 dude
– Barafu Albino Dec 23 '14 at 13:17