Q1:
错误重现:
linux下 用tar -zxf xxx.tar.bz2
报错:
gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error exit delayed from previous errors
原因:
此压缩包没有用gzip格式压缩
解决方案:
解压的时候不用加上z 。直接tar -xvf 就可以了。
--2016/05/18
时间: 2025-01-07 08:05:00
Q1:
错误重现:
linux下 用tar -zxf xxx.tar.bz2
报错:
gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error exit delayed from previous errors
原因:
此压缩包没有用gzip格式压缩
解决方案:
解压的时候不用加上z 。直接tar -xvf 就可以了。
--2016/05/18