I am trying to install a compressed package ending in .tar.gz and I am getting an error saying that it is not in the right format,

34,598

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
Share:
34,598

Related videos on Youtube

A.B.
Author by

A.B.

ZX81, C64, DR-DOS, OS/2, Linux Talk with me in Ask Ubuntu General Room profile for A.B. on Stack Exchange, a network of free, community-driven Q&A sites http://stackexchange.com/users/flair/186154.png

Updated on September 18, 2022

Comments

  • A.B.
    A.B. over 1 year

    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?

  • James Henstridge
    James Henstridge almost 12 years
    Fair enough. I've cut that part from the answer.