.tar.gz 文件和 .tar.xz 文件的区别

主宰稳场 提交于 2020-08-05 04:33:54

二者的区别英文原文如下:

tar.gz and tar.xz both are compressed tar-files, but with different compression methods. tar.gz is compressed with the gzip compression utility, tar.xz with the xz utility. For the user there is no difference when extracting those files, both behave exactly the same.


简单来说,两种文件都是压缩了的tar文件,只是压缩算法不同。 tar.gz使用的是gzip压缩工具,tar.xz使用的是xz工具。但对于使用者来说,二者的解压没有区别。


解压命令举例,可以解压压缩包到指定的文件夹。

tar -xvf test123.tar.xz -C ./Extracted/test123


参考资料

============

https://www.linuxquestions.org/questions/linux-newbie-8/what-is-the-difference-between-a-tar-gz-and-a-tar-xz-file-4175429959/

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!