While it looks like your setup is correct, there are a few things to check:
- The output of
env– specificallyPATH. command -v javatells you what?- Is there a
javaexecutable in$JAVA_HOME\binand does it have the execute bit set? If notchmod a+x javait.
I trust you have source‘d your .profile after adding/changing the JAVA_HOME and PATH?
Also, you can help yourself in future maintenance of your JDK installation by writing this instead:
export JAVA_HOME=/home/aqeel/development/jdk/jdk1.6.0_35
export PATH=$JAVA_HOME/bin:$PATH
Then you only need to update one env variable when you setup the JDK installation.
Finally, you may need to run hash -r to clear the Bash program cache. Other shells may need a similar command.
Cheers,