Skip to content

Instantly share code, notes, and snippets.

@Alelak
Last active December 5, 2015 02:50
Show Gist options
  • Save Alelak/c9ce80c81780f0e64ea8 to your computer and use it in GitHub Desktop.
Save Alelak/c9ce80c81780f0e64ea8 to your computer and use it in GitHub Desktop.
Install java on debian
#!/bin/sh
wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u66-b17/jre-8u66-linux-x64.tar.gz
tar -xvf jre-8u66-linux-x64.tar.gz
sudo mkdir -p /opt/jre
sudo mv jre1.8.0_66/* /opt/jre/
sudo update-alternatives --install "/usr/bin/java" "java" "/opt/jre/bin/java" 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment