Last active
August 29, 2015 14:10
-
-
Save sio2boss/5d70247af22277ae8924 to your computer and use it in GitHub Desktop.
Install Oracle Java 8 on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# From http://www.webupd8.org/2012/09/install-oracle-java-8-in-ubuntu-via-ppa.html | |
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install -y oracle-java8-installer | |
java -version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment