Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As of around 15.04.2012 the wget command for the Java download link seems to be broken on Linux is there a workaround? Is oracle complying with the eu cookie law in your country by doing this? How can I install Java?

share|improve this question
You don't install a kitchen counter by bringing it home from the store. All wget does is get you your files. It doesn't install anything. – corsiKa Apr 22 '12 at 14:05
How exactly would wget be broken? – Philipp Reichart Apr 22 '12 at 14:06
1  
Is there a particular reason you're not using apt-get to install it? – Perception Apr 22 '12 at 14:06
@Perception Sorry it a self answered question I posted to give an answer to people who are no doubt frustrated by what Oracle has done... – thejartender Apr 22 '12 at 14:13
@corsiKa I didn't say wget was broken I said the link for Java is broken if you attempt to wget the download. Solution is posted below. – thejartender Apr 22 '12 at 14:15
show 2 more comments

6 Answers

up vote 116 down vote accepted
+50

If you are looking to download the Oracle JDK from the command line using wget, there is a workaround. Run the wget command as follows:

wget --no-cookies --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com" "http://download.oracle.com/otn-pub/java/jdk/7/jdk-7-linux-x64.tar.gz"

Be sure to replace the download link with the correct one for the version you are downloading.

share|improve this answer
3  
wget asks me to also tell it to --no-check-certifcate. – Urs Reupke Aug 15 '12 at 11:47
1  
This works flawslessly for me. I only changed the url to download.oracle.com/otn-pub/java/jdk/7u6-b24/… – fedesilva Aug 15 '12 at 18:57
Here is a better way, updated for latest versions, one that should also work for upgrading it stackoverflow.com/a/13347087/99834 – sorin Nov 12 '12 at 16:05
works to download the straight rpm also! Just change the url... thanks! – Jonesome Dec 7 '12 at 2:01
1  
wget --no-cookies --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com" "http://download.oracle.com/otn-pub/java/jdk/7u10-b18/jdk-7u10-linux-x64.rpm" for x64 RPM file. – xy_ Dec 27 '12 at 21:07
show 6 more comments

You can still use wget without cookie headers, by downloading it from Java.com, instead of Oracle.com.

wget "http://javadl.sun.com/webapps/download/AutoDL?BundleId=68234" -O java.tar.gz

This will download the TAR G-Zipped file, and save it as "java.tar.gz". The actual webpage is here: http://www.java.com/en/download/manual.jsp. I usually use the 64-bit RPM package on my CentOS 6.3 Rackspace Cloud Servers.

share|improve this answer

Downloading Java from the command line has always been troublesome. What I have been doing reciently is to use FireFox (other browsers might work) to get a download started on my laptop, pause it (within the Downloads windows), use the "Copy Download Link" menu item of the context menu displayed for the downloading file. This URL can then be used on the Linux box to download the same file. I expect the URL has a short time to live. Ugly, but generally successful.

share|improve this answer
Yes.. that works. Nice. I had my url like download.oracle.com/otn-pub/java/jdk/7u9-b05/… – Tejaswi Rana Nov 20 '12 at 12:57
Great, thanks a lot, non of the other methods (loading cookies etc.) worked for me. But this one worked like a charm. – brhneser Jan 22 at 19:17

This works for the JDK 6, you just need to replace the download url with the latest version.

wget --no-cookies --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2Ftechnetwork%2Fjava%2Fjavase%2Fdownloads%2Fjdk6-downloads-1637591.html;" http://download.oracle.com/otn-pub/java/jdk/6u33-b03/jdk-6u33-linux-x64.bin
share|improve this answer

I know that Oracle made everything possible to make their Java Runtime and Java SDK as hard as possible.

Here are some guides for command line lovers.

For Debian like systems (tested on Debian squeeze and Ubuntu 12.x+)

su -
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
apt-get update
apt-get install oracle-java7-installer
exit

Note: if you know a better or easier way add a comment, I will update the guide.

share|improve this answer

Oracle has put a prevention cookie on the download link to force you to agree to the terms even though the license agreement to use Java clearly states that merely by using Java you 'agree' to the license..

The method that Oracle wants is you to download it with an agreement. After that, this script cn be modified for your specific Linux

#!/bin/bash
#Author: Yucca Nel http://thejarbar.org
#Will restart system
#Modify these variables as needed...
tempWork=/tmp/work
locBin=/usr/local/bin
javaUsrLib=/usr/lib/jvm

sudo mkdir -p $javaUsrLib
mkdir -p $tempWork
cd $tempWork

#Extract the download
tar -zxvf $downloadDir/jdk*tar.gz

#Move it to where it can be found...

sudo mv -f $tempWork/jdk* $javaUsrLib/

sudo ln -f -s $javaUsrLib/jdk1/bin/* /usr/bin/

#Update this line to reflect versions of JDK...
export JAVA_HOME="$javaUsrLib/jdk1.7.0_03"
#Extract the download
tar -zxvf $tempWork/*

#Move it to where it can be found...

sudo mv -f $tempWork/jdk1* $javaUsrLib/

sudo ln -f -s $javaUsrLib/jdk1*/bin/* /usr/bin/
sudo rm -rf $tempWork
#Update this line to reflect newer versions of JDK...
export JAVA_HOME="$javaUsrLib/jdk1.7.0_03"

if ! grep "JAVA_HOME=$javaUsrLib/jdk1.7.0_03" /etc/environment
then
    echo "JAVA_HOME=$javaUsrLib/jdk1.7.0_03"| sudo tee -a /etc/environment
fi


exit 0
share|improve this answer
1  
This answer assumes that you are using Linux, and that you want to install it in a non-standard way / place, and a bunch of other things. A better answer would be "just follow the installation instructions on the download website" ... unless you are using Ubuntu, in which case there are other ways to do it. – Stephen C Jun 5 '12 at 9:41
1  
And how's it odd that the answer assumes Linux when the question title includes Linux? The sceipt is not a one-size-fit-all given that Linux itself is not such. Given this is my own answer to my own question, I have tested it and it worked for me. – thejartender Feb 6 at 16:41
1  
Funny times when you answer your own (good) question and get negative score! – Tivie Feb 24 at 20:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.