I am trying to compile HelloWorld in Java under Mac OS X 10.6 (Snow Leopard) and I get this compiler error:

java[51692:903] Can't open input server /Library/InputManagers/Inquisitor

It happens when I am using terminal command javac and when I am trying to do this in NetBeans. I was trying to open folder "Inquisitor", but I have no access to folder, even if I login as root user.

What is going on?

link|improve this question
feedback

migrated from stackoverflow.com Feb 1 '10 at 8:51

This question came from our site for professional and enthusiast programmers.

5 Answers

Something awful has happened to your computer, and I recommend shifting to SuperUser.

On my SnowLeopard system, there is no /Library/InputManagers at all. There is a /Library/Input Methods, and it's empty.

Go complain to Inquisitor?

link|improve this answer
feedback

Try this in Applications >> Utilities >> Terminal.app

sudo chmod -R 777 /Library/InputManagers/Inquisitor 

Where 777 are r/w 4 all users.

link|improve this answer
feedback

I guess it will not remove anything because it can’t find it in that folder. I’ve the same problem, Eclipse 3.5 and Mac OS X 10.6.4.

link|improve this answer
feedback

Searching for Inquisitor on the internet I found a web site with this FAQ question on removing it: How do I uninstall Inquisitor?. It gives essentially the same answer as bashu did in March. I'm running Snow Leopard 10.6.5

link|improve this answer
feedback

Try removing it:

sudo rm -rf /Library/InputManagers/Inquisitor/
link|improve this answer
-1: Not necessarily a good idea to go around removing stuff you think might be causing a problem. – Wuffers Jul 28 '11 at 5:42
feedback

Your Answer

 
or
required, but never shown