Created
June 22, 2015 19:17
-
-
Save xman1980/7a9b79d670dcb892e3fc to your computer and use it in GitHub Desktop.
wget_java_download_centos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------------- For 32-bit Systems --------------- | |
# cd /opt | |
# wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-i586.rpm" | |
# wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jre-8u45-linux-i586.rpm" | |
--------------- For 64-bit Systems --------------- | |
# cd /opt | |
# wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-x64.rpm" | |
# wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jre-8u45-linux-x64.rpm" | |
--------------- For 32-bit Systems --------------- | |
# rpm -Uvh jdk-8u45-linux-i586.rpm | |
# rpm -Uvh jre-8u45-linux-i586.rpm | |
--------------- For 64-bit Systems --------------- | |
# rpm -Uvh jdk-8u45-linux-x64.rpm | |
# rpm -Uvh jre-8u45-linux-x64.rpm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment