2

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?

3
  • How was this off-topic on SO?
    – Hassan
    Commented Jun 11, 2012 at 7:37
  • @Hassan Running a compiler in an odd (configured wrong, outdated) environment is not a programming question. Commented Nov 24, 2012 at 22:13
  • Please check this answer. Maybe Inquisitor need to be updated. Please check the version and compare if it is compatible.
    – Pawel
    Commented Feb 14, 2016 at 10:55

2 Answers 2

0

Try this in ApplicationUtilitiesTerminal.app:

sudo chmod -R 777 /Library/InputManagers/Inquisitor

Where 777 are read/write/execute flags for all users for all files in director /Library/InputManagers/Inquisitor. Explained here.

-2

Try removing it:

sudo rm -rf /Library/InputManagers/Inquisitor/
1
  • 3
    -1: Not necessarily a good idea to go around removing stuff you think might be causing a problem.
    – Wuffers
    Commented Jul 28, 2011 at 5:42

You must log in to answer this question.