gzip: stdin: unexpected end of file -> problem in extracting jdk-7u55-linux-x64.tar.gz
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.gzalso 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.gzBut 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 nowHow 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