Skip to content

Instantly share code, notes, and snippets.

View Crazycurly's full-sized avatar

Sam Crazycurly

View GitHub Profile
@Crazycurly
Crazycurly / installJdkTarGzUbuntu.sh
Last active September 1, 2019 04:32 — forked from filipelenfers/installJdkTarGzUbuntu.sh
Install JDK from tar.gz Ubuntu
wget https://github.com/frekele/oracle-java/releases/download/8u212-b10/jdk-8u212-linux-x64.tar.gz
#Login as root
sudo su
#create jdk directory
mkdir /opt/jdk
#uncompress, change to your file name
tar -zxf jdk-8u212-linux-x64.tar.gz -C /opt/jdk