Skip to content

Instantly share code, notes, and snippets.

@Afforess
Forked from tankchintan/gist:1335220
Last active December 16, 2015 03:18
Show Gist options
  • Save Afforess/5368515 to your computer and use it in GitHub Desktop.
Save Afforess/5368515 to your computer and use it in GitHub Desktop.
# Get the latest Sun Java SDK from Oracle
wget http://download.oracle.com/otn-pub/java/jdk/7u17-b02/jdk-7u17-linux-i586.rpm
# Rename the file downloaded, just to be nice
mv jdk-7u17-linux-i586.rpm\?e\=1320265424\&h\=916f87354faed15fe652d9f76d64c844 jdk-7u17-linux-i586.rpm
# Install Java
sudo rpm -i jdk-7u17-linux-i586.rpm
# Check if the default java version is set to sun jdk
java -version
# If not then lets create one more alternative for Java for Sun JDK
sudo /usr/sbin/alternatives --install /usr/bin/java java /usr/java/jdk1.7.0_17/bin/java 20000
# Set the SUN JDK as the default java
sudo /usr/sbin/alternatives --config java
# Verify if change in SDK was done.
java -version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment