Skip to content

Instantly share code, notes, and snippets.

@mikakoivisto
Created April 22, 2015 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mikakoivisto/8befba49e3413553eb38 to your computer and use it in GitHub Desktop.
Save mikakoivisto/8befba49e3413553eb38 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 Java 7 automated install script
cat - <<-EOF >> /etc/apt/sources.list.d/webupd8team-java.list
# webupd8team repository list
deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main
# deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main
EOF
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xEEA14886
echo debconf shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections
echo debconf shared/accepted-oracle-license-v1-1 seen true | /usr/bin/debconf-set-selections
apt-get update
apt-get install oracle-java7-installer
@wordyallen
Copy link

java 8 is telling me to press enter? I tried echo and expect scripts and I cant get past the prompt.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment