.tar.gz command: tar -zxvf xx.tar.gz
.tar.bz2 command: tar -jxvf xx.tar.bz2
.txz command: tar xJf xxx.txz
zip command: unzip xx.zip
Error:
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
Solution: This zip is not compressed in gzip format, so there is no need to add z commands.
Comments