Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将目录的所有内容压缩到一个lz4存档中,我想不出一种方法来做到这一点。我已经阅读了所有可用的参数,但仍然没有成功。请建议我如何实现这一目标。
lz4
像 lz4、gzip、bzip2 和 xz 这样的东西只是压缩字节流。您需要另一个实用程序,如 tar,将一组目录和文件转换为字节流。焦油的输出然后被送入压缩机。这就是为什么您会看到名称为 tar.gz 或 tar.xz 的档案。
如何在 lz4 中使用 tar?