On Mac OS X 10.6 I sometimes get processes that show up in "ps" as "E", which the man page says means they're "trying to exit", but they won't. "kill -9" doesn't work, neither does waiting. Is there any way to get rid of them? I usually wouldn't care, but they sometimes block an entry in the Dock.

link|improve this question
I had this forever every few weeks with the Finder. Annoying as hell, since I couldn't start another instance (at least not easily). – Daniel Beck Oct 16 '10 at 21:35
feedback

1 Answer

Do you get an error when trying to kill? What if you specify the PID, like kill 12345?

Also, you can try a killall, like this: killall program but keep in mind it will kill anything that matches, so be a little specific with the program name, dont just put killall fi or something that may match more than one program, otherwise you may have unexpected results.

link|improve this answer
No, I do not get an error when I kill, with or without "-9". And I do kill by PID. – schani Jul 19 '10 at 14:08
What processes refuse to be killed? Anything in /var/log/messages that might help? – Mistiry Jul 19 '10 at 16:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.