It is in the bin directory, at the directory you have installed it. Just: Quote:
cd <the directory you have installed your java>/bin/
./java
|
I would suggest to add to your .bshrc or profile the following if you haven't done already: Quote:
export JAVA_HOME=<the directory you have installed your java>
export PATH=$PATH:<the directory you have installed your java>/bin/
| Like this whenever you get a new shell, you will have the java binaries (executables) in your path, so a simple: will do the job from whichever directory you are in, and also other programs that might need java, will know where it is installed. |