lbzip2取消压缩焦油文件
我压缩了一个带有许多子文件夹(约50GB)
压缩的文件夹:
tar -cjf test.tar.bz2 test
unzip:
lbzip2 -k -d -n 5 test.tar.bz2 ~/temp/
为什么输出为.tar文件? 我正在搜索Google,但我很困惑 我希望一个未压缩的文件夹
谢谢你
I compressed a folder with many subfolders ( about 50GB)
Compression:
tar -cjf test.tar.bz2 test
unzip:
lbzip2 -k -d -n 5 test.tar.bz2 ~/temp/
Why the output is a .tar file ?
I'm searching on google but I'm confused
I expect a uncompressed folder
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
tar -xjf test.tar.bz2
将运行
bunzip2
进行解压缩,并将提取焦油文件的内容。如果您觉得需要专门使用
lbzip2
进行解压缩,则:lbzip2 -dc< test.tar.bz2 | tar XF -
tar -xjf test.tar.bz2
That will run
bunzip2
to decompress and it will extract the contents of the tar file.If you feel the need to specifically use
lbzip2
for decompression, then:lbzip2 -dc < test.tar.bz2 | tar xf -
这些可能会有所帮助:
These might help: