Hi,
That error message is basically saying it cannot find java.
I'll assume you installed JRE at a minimum, but the question is where to.
To verify that do the following:
1. Log in to root.
2. Type this in and press enter:
find / -name java -print
Once you know the location you need to set the PATH.
For example if this was location:
/home/John/j2re1.4.2_05/bin/java
If you were using bin/bash you'd need to add this to your ~/.bashrc
PATH=$PATH:/home/John/j2re1.4.2_05/bin
export PATH
And if you are using /bin/csh (or /bin/tcsh), then add this to your ~/.cshrc
setenv PATH "${PATH}:/home/John/j2re1.4.2_05/bin
Log out and log back in again.
Note!!! If you are not sure what shell you are in then use the "finger" command. For example:
finger John
Regards,
Javalad