tar命令解压缩出错

[root@zhoucentos share1]# tar zxvf otp_src_19.1.tar.gz

gzip: stdin: not in gzip format

tar: Child returned status 1

tar: Error is not recoverable: exiting now

原因是这个压缩包没有用gzip格式压缩,所以不用加z指令

[Sun@localhost Downloads]$ tar xvf otp_src_19.1.tar.gz

这样就可以了

解决方法二:

1:把下载下来的文件重命名: mv otp_src_19.1.tar.gz otp_src_19.1.tar

2:再执行解压命令:tar zxvf otp_src_19.1.tar

你可能感兴趣的:(tar命令解压缩出错)