解压缩tar的tar.bz2文件错误

黄文森:

我试图在Fedora 17 OS中解压缩tar.bz2文件。我使用了命令:

# tar -xvjf myfile.tar.bz2

我收到此错误消息:

tar (child):bzip2: Cannot exec :Nosuch of file or directory
tar (child): Error is not recoverable: exitng now
tar: Child returned status 2
tar:Error is not recoverable: exitng now

我该如何解决?

天网:

因为bz2你需要这样执行

tar -jxvf

另外,您也可以像这样执行

bunzip2 myfile.tar.bz2

有关更多信息,您应该检查一下,

tar --help

如有疑问,请file在档案上运行以确保其实际压缩bz2格式。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章