Skip to content

Instantly share code, notes, and snippets.

@pboksz
Last active December 11, 2015 19:38
Show Gist options
  • Save pboksz/4649744 to your computer and use it in GitHub Desktop.
Save pboksz/4649744 to your computer and use it in GitHub Desktop.
Installing Java7 SDK on Ubuntu

I found this super simple installation guide to get java7 from oracle onto any Ubuntu installation here and would like to shorten it up in a gist:

Install the ppa repo, update apt-get and install java7:

$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-get install oracle-java7-installer

Check if it installed correctly:

$ java -version
$ javac -version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment