How to kill pocess in other console?
Rusty Carruth
plug-discuss@lists.PLUG.phoenix.az.us
Mon, 21 May 2001 07:14:27 -0700 (MST)
>
>
> -Used "ps -a" on the second console to get a list of the processes on all
> consoles.
> -I got the id for the process I want to kill on tty1.
> -I enter "kill 879" at console 2.
> -A subsequent "ps -a" still shows the 879 process and switching back to
> console 1, it is still hung.
kill -HUP 879
if that fails:
kill -TERM 879
if THAT fails:
kill -9 879
IF THAT fails:
reboot
(only half joking - if a kill -9 does not remove a process then something
VERY strong is holding on to it, like hardware or the kernel or ...)