Skip to content

Instantly share code, notes, and snippets.

@xman1980
Created June 22, 2015 19:17
Show Gist options
  • Save xman1980/7a9b79d670dcb892e3fc to your computer and use it in GitHub Desktop.
Save xman1980/7a9b79d670dcb892e3fc to your computer and use it in GitHub Desktop.
wget_java_download_centos
--------------- 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