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

最近在部署环境,在安装docker-compose的过程中解压时,

解压命令:tar -zvxf docker-compose.tar.gz

遇到了一个问题,

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Error is not recoverable: exiting now

现在我提供一下我总结的解决方法:

#tar -vxf docker-compose.tar.gz

tar包压缩的时候用cvf参数,解压的时候用xvf参数
或压缩的时候用czvf参数,解压的时候用xzvf参数

bz 包遇到了,就把z参数换成相应j参数

你可能感兴趣的:(gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting)