Click to See Complete Forum and Search --> : kill and killall failed me!


sym
09-10-2001, 02:19 PM
I had a rogue instance of staroffice crashing my machine. I went to the commandline, and used the PS command to get a listing of processes. I then tried to use kill <PID> and killall <process name>, but neither of them worked.

Is there a more powerful command that kill and killall that I could have used, or do I just have to reboot (just like windows)?

Choozo
09-10-2001, 02:46 PM
kill -9 [pid] would be the 'mother-of-all' to use, but try kill -15 [pid] first (more nice and decent sighup).

Cheers :)

Craig McPherson
09-10-2001, 11:49 PM
Signal 15 is the default signal that kill uses, so "kill -15" would be redundant.

Signal 15 just asks the process to shut down. Signal 9 has the kernel actually shut the process down.