7

I am new to Ubuntu and after doing some research I still can't figure what I am doing wrong. I am downloading the a package ending in .tar.gz,then I when I try to use:

tar -xvf matlab_r2011b.tar.gz

I get the following error:

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

What am I doing wrong?

A.B.
  • 89,123
  • 21
  • 245
  • 323
Drummond
  • 71
  • 1
  • 1
  • 2
  • 3
    Probably your downloaded `matlab_r2011b.tar.gz` is bad file , if it provides md5sum ,cross-check for it from download source. – atenz Jun 28 '12 at 08:41
  • https://askubuntu.com/questions/877292/gzip-stdin-not-in-gzip-format – dhiraka Aug 14 '17 at 02:34

1 Answers1

4

Try checking the file type with the following command:

file matlab_r2011b.tar.gz

If it tells you that it is a tar archive rather than gzip compressed data, then it is possible that the file got decompressed while being downloaded (possibly due to a faulty web server configuration on the other end). If that is the case, just rename the archive and try again:

mv matlab_r2011b.tar.gz matlab_r2011b.tar
tar xvf matlab_r2011b.tar
James Henstridge
  • 40,476
  • 13
  • 109
  • 92