this post was submitted on 28 Nov 2025
24 points (96.2% liked)

Linux Questions

2896 readers
21 users here now

Linux questions Rules (in addition of the Lemmy.zip rules)

Tips for giving and receiving help

Any rule violations will result in disciplinary actions

founded 2 years ago
MODERATORS
 

A .tar archive is basically only the files cat'ed together, with a header and index added, right?

And a .tar.gz takes forever to modify, because it needs to first extract the .tar.

So why is there no archive format that just cat'es the compressed files together?

you are viewing a single comment's thread
view the rest of the comments
[–] bjoern_tantau@swg-empire.de 11 points 1 day ago

TAR is short for Tape ARchive. It was originally meant to be written to magnetic tapes. Like cassette tapes. As such they are not really meant to be changed much. You read the whole thing from beginning to end until you find what you're looking for.

Modifying it would usually mean writing the whole thing again. So that is more a modern notion.