Skip to content

Instantly share code, notes, and snippets.

@marhan
Created May 8, 2017 09:22
Show Gist options
  • Save marhan/e623dcf23e91faf60845ce8f90772e1a to your computer and use it in GitHub Desktop.
Save marhan/e623dcf23e91faf60845ce8f90772e1a to your computer and use it in GitHub Desktop.
Installs oracle jdk 8 on Debian 8 and Ubuntu 16
#!/bin/bash
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886 && apt-get update
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections
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