Linux System Admins Blog

System admins of Promet – an e-commerce, high availability Open Source web shop – share their findings

Linux System Admins Blog header image 2

Upgrade to Java SE 6 update 12 on Fedora 10

February 9th, 2009 · No Comments

After our ASA units were updated to the latest version of ASDM my Java client would no longer connect to ASDM. An upgrade to the latest version of Java was in order. Since fedora yum repository does not yet offer the latest version of Java I downloaded the latest rpm variant of JDK from http://java.sun.com/javase/downloads/index.jsp

The install steps are:

Grand executable permission to installer file
chmod +x jdk-6u12-linux-i586-rpm.bin

Run installer file
./jdk-6u12-linux-i586-rpm.bin

Rename symbolic links pointing to old java programs
cd /etc/alternatives
mv java java_old
mv javaws java_old
mv keytool keytool_old

Create new symbolic links
cd /etc/alternatives
ln -s /usr/java/latest/bin/java java
ln -s /usr/java/latest/bin/javaws javaws
ln -s /usr/java/latest/bin/keytool keytool

Verify that new java version is installed
javaws
Java(TM) Web Start 1.6.0_12
Usage: javaws [run-options]
javaws [control-options]

Related Posts:

Tags: Installation · desktop

0 responses so far ↓

  • There are no comments yet...Kick things off by filling out the form below.

Leave a Comment