Hello,
I have no experience with Slackware 10.2, but the JDK installation shouldn't be a problem. If you haven't already done so, download the latest version of the JDK from Sun. It will be called something like jdk-<version>-linux-i586.bin.
First, make sure the file is executable:
Code:
chmod +x jdk-<version>-linux-i586.bin
Because the file creates an installation folder at the place where it is run, copy it to the appropriate location:
Code:
cp jdk-<version>-linux-i586.bin /usr/lib/
Run the file as root:
Code:
./jdk-<version>-linux-i586.bin
The JDK files are installed in a directory called jdk<version> in /usr/lib. That's it.
Something I do is to create a symlink which points to the actual JDK. Whenever I upgrade I only have to create a new symlink and everything is fine:
Code:
ln -s jdk<version> java
You can now use the symlink for all the applications that need Java (Browser plugins, OpenOffice, etc.).
Lars