Skip to content

Instantly share code, notes, and snippets.

@albogdano
Forked from tankchintan/gist:1335220
Last active August 29, 2015 13:57
Show Gist options
  • Save albogdano/9462392 to your computer and use it in GitHub Desktop.
Save albogdano/9462392 to your computer and use it in GitHub Desktop.
# First verify the version of Java being used is not SunJSK.
java -version
# Get the latest Sun Java SDK from Oracle http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
wget http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-x64.rpm
# Install Java
sudo rpm -i jdk-7u51-linux-x64.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_51/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
System.out.print("hello gist!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment