0
votes
0answers
55 views

Accessing parts of xz-compressed file

I have a code that takes a file, mmaps it into memory and then reads parts of it. My goal is to make it work with xz-compressed files of this type as well. The file may potentially be quite large and ...
7
votes
4answers
4k views

Why is *.tar.gz still much more common than *.tar.xz?

Whenever I see some source packages or binaries which are compressed with GZip I wonder if there are still reasons to favor gz over xz (excluding time travel to 2000), the savings of the LZMA ...
1
vote
2answers
1k views

How to get the uncompressed size of an LZMA2 file (.xz / liblzma)

I'm looking for a way to get the uncompressed stream size of an LZMA2 / .xz file compressed with the xz utility. I'm using liblzma from Windows/Linux for this task, so I guess I'm looking for some ...