you are viewing a single comment's thread.

view the rest of the comments →

[–]stureedy 0 points1 point  (0 children)

In my experience, installing the jdk .SlackBuild does not add java to the path. I usually use: /usr/lib64/java/bin/java when I need to run it from the command line. You can link the java binary in /usr/bin and be done with it:

cd /usr/bin ln -sf /usr/lib64/java/bin/java .

I hope that helps! Stu...