In your .bashrc file in your home directory, edit the "set path={stuff}" to include the path to where you installed java, just follow the format of the existing path, can't really remember in linux bash, but I know in Sun Solaris (and in csh, not bash) its just a space seperated list of directories that you want it to look though to find your command, it is also important to note that it will search through those directories in the order in which you specify them in that line, so if you have /dir1 and /dir2, both with the command runme.exe in them, and the path is "set path={/dir1 /dir2}" and you type runme.exe, "/dir1/runme.exe" will be the one which is run (this tends to be helpful information for people who can't seem to figure out why the wrong command is being run when there are multiple things of the exact same name in the directories in their path). Hope this helps you.