Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issues uncompressing a tar.gz file

I have been trying to uncompress the following file:

sudo wget http://download.oracle.com/otn-pub/java/jdk/7u21-b11/jdk-7u21-linux-x64.tar.gz

with the following:

sudo tar zxvf jdk-7u21-linux-x64.tar.gz -C /usr/lib/jvm/

I am getting this error

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now

I am using an Amazon Linux instances. By default jre is installed instead of the jdk, which I need to be able to run jboss. I would install the jdk using yum, but unfortunately it doesn't seem to be possible. Issue I am having is that it doesn't make sense why its not working if I am doing everything right from what I have been able to discern. I have downloaded two different versions just to be sure its not just corrupted files. Any help figuring this out would be greatly appreciated!

like image 457
Andy Avatar asked May 05 '13 06:05

Andy


1 Answers

I know this thread is old, but I figured someone might be able to use this information when searching the web for why they can't unzip their JDK distros on raspberrypi

If you pass these parameters to wget it will also accept the policy.

--no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie"
like image 122
Louie S Avatar answered Oct 13 '22 19:10

Louie S