Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Created April 21, 2015 16:54
Show Gist options
  • Select an option

  • Save pbalduino/47fc3c0354e841718905 to your computer and use it in GitHub Desktop.

Select an option

Save pbalduino/47fc3c0354e841718905 to your computer and use it in GitHub Desktop.
install-java.sh
#!/bin/sh
cd /home/amanda/Downloads
rm -rf /opt/jvm
rm -rf jre1.8.0_45
mkdir /opt/jvm
tar -zxf jre-8u45-linux-i586.tar.gz -C /opt/jdk
update-alternatives --install /usr/bin/java java /opt/jdk/jre1.8.0_45/bin/java 100
update-alternatives --display java
java -version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment