Skip to content

Instantly share code, notes, and snippets.

@jstrassburg
Created September 10, 2016 19:36
Show Gist options
  • Save jstrassburg/947327f36a0192b6e62d5401a88f4604 to your computer and use it in GitHub Desktop.
Save jstrassburg/947327f36a0192b6e62d5401a88f4604 to your computer and use it in GitHub Desktop.
Automated Java 8 Install Ubuntu
#thanksOracle
sudo apt-get update -y
sudo apt-get install -y software-properties-common
sudo apt-add-repository -y ppa:webupd8team/java
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections
sudo apt-get update -y
sudo apt-get install -y oracle-java8-installer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment