Skip to content

Instantly share code, notes, and snippets.

@ainoya
Created October 5, 2014 07:38
Show Gist options
  • Save ainoya/e8bfc8bd802f16be0d37 to your computer and use it in GitHub Desktop.
Save ainoya/e8bfc8bd802f16be0d37 to your computer and use it in GitHub Desktop.
install oracle java
#!/bin/sh
cd /tmp
wget --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" \
"http://download.oracle.com/otn-pub/java/jdk/7u67-b01/jdk-7u67-linux-x64.rpm"
rpm -Uvh jdk-7u67-linux-x64.rpm
@ainoya
Copy link
Author

ainoya commented Jun 6, 2015

#!/bin/sh
cd /tmp
wget --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" \
"http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-x64.rpm"
rpm -Uvh jdk-8u45-linux-x64.rpm

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