TechSquidTV@lemmy.world to Linux@lemmy.worldEnglish · 18 hours agoA deep dive into the tar formatdepot.devexternal-linkmessage-square7fedilinkarrow-up179arrow-down11
arrow-up178arrow-down1external-linkA deep dive into the tar formatdepot.devTechSquidTV@lemmy.world to Linux@lemmy.worldEnglish · 18 hours agomessage-square7fedilink
minus-squaretal@lemmy.todaylinkfedilinkEnglisharrow-up11·edit-216 hours agoI’d say pixz is considerably more interesting to improve tar. https://github.com/vasi/pixz Used as a compressor with tar, it adds: Parallel compression/decompression, increasingly important with many-core processors. Indexed access. Tarballs, unlike, say, zip or 7zip, don’t normally support jumping right to the point in an archive where a file lives. It’s LZMA-based, like xz, lzip, or 7zip. Good-but-slow compression, faster decompression than bzip.
I’d say
pixz
is considerably more interesting to improvetar
.https://github.com/vasi/pixz
Used as a compressor with
tar
, it adds:Parallel compression/decompression, increasingly important with many-core processors.
Indexed access. Tarballs, unlike, say, zip or 7zip, don’t normally support jumping right to the point in an archive where a file lives.
It’s LZMA-based, like
xz
,lzip
, or7zip
. Good-but-slow compression, faster decompression than bzip.