Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

gzip: stdin: unexpected end of file -> problem in extracting jdk-7u55-linux-x64.tar.gz

Writer Olivia Zamora

I have downloaded 'jdk-7u55-linux-x64.tar.gz'

When I execute following command to extract,

 sudo tar xvzf jdk-7u55-linux-x64.tar.gz

also tried,

sudo tar xvf jdk-7u55-linux-x64.tar.gz
sudo tar xf jdk-7u55-linux-x64.tar.gz
sudo tar -xvf jdk-7u55-linux-x64.tar.gz

But am getting error at last as,

gzip: stdin: unexpected end of file
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverable: exiting now

How to resolve this ?

1 Answer

Please don't use sudo unless necessary. If you are extracting this into a directory you have access to, there's no need for sudo.

Anyway, the error you're getting is usually due to an incomplete download. The archive ends before the expected footer of the gzipped file. It will probably work fine if you just download it again.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy