$ ps ax | grep process
73849 ?? ?E 0:00.00 (process name)
75882 ?? ?E 0:00.00 (process name)
I have tried all the solution but it was impossible.
Whatever process you want to end, the process should not be able to resist sudo kill -9 <PID here>
. The argument -9
issues a SIGKILL
, that processes should not be able to intercept.
Use with care, this is not a preferable solution in the common case.
If this does not work for you either, have a look at this thread.