Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lkamal/94897837886f31e9363b6c420c715230 to your computer and use it in GitHub Desktop.
Save lkamal/94897837886f31e9363b6c420c715230 to your computer and use it in GitHub Desktop.
Install Oracle JAVA JDK 9.0.4 version via Linux command line with wget
# rpm
wget --no-cookies \
--no-check-certificate \
--header "Cookie: oraclelicense=accept-securebackup-cookie" \
"http://download.oracle.com/otn-pub/java/jdk/9.0.4+11/c2514751926b4512b076cc82f959763f/jdk-9.0.4_linux-x64_bin.rpm"
# tarball
wget --no-cookies \
--no-check-certificate \
--header "Cookie: oraclelicense=accept-securebackup-cookie" \
"http://download.oracle.com/otn-pub/java/jdk/9.0.4+11/c2514751926b4512b076cc82f959763f/jdk-9.0.4_linux-x64_bin.tar.gz"
@gowthaman-new
Copy link

Yes @lkamal Even i get 404. Is there any workaround to download java 9.

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