A tar.gz is a tar file inside a gzip file, so 1st you must unzip the gzip file with gunzip -d filename.tar.gz
, and then use tar
to untar it. However, since gunzip
says it isn't in gzip format, you can see what format it is in with file filename.tar.gz
, and use the appropriate program to open it.