0
点赞
收藏
分享

微信扫一扫

tar: error is not recoverable: exiting now

清冷的蓝天天 2024-06-13 阅读 9


tar: Child returned status 1
tar: Error is not recoverable: exiting now

异常1:

> tar -zxvf

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

解决:

删除z,即:tar -xvf

异常2:

> tar -jxvf

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

解决:

删除j,即:tar -xvf


举报

相关推荐

0 条评论