Skip to content

Instantly share code, notes, and snippets.

View enrique-fernandez-polo's full-sized avatar
🎯
Focusing

Enrique Fernández-Polo Puertas enrique-fernandez-polo

🎯
Focusing
View GitHub Profile
@enrique-fernandez-polo
enrique-fernandez-polo / install_jdk_8_with_jce.sh
Created September 20, 2016 08:25
Download Java JDK 8 and install JCE
wget -q -N --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u101-b13/jdk-8u101-linux-x64.tar.gz" -O jdk-8u101-linux-x64.tar.gz
tar -xf jdk-8u101-linux-x64.tar.gz
wget -q -N --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip" -O jce_policy-8.zip
unzip -qo jce_policy-8.zip
rm -rf jdk1.8.0_101/jre/lib/security/local_policy.jar
rm -rf jdk1.8.0_101/jre/lib/security/US_export_policy.jar