|
The tar utility, which comes from (t)ape (ar)chive, does not compress files (except for any slack space). The gzip utility does compress files. So, if you "tar" a bunch a of files together into an archive, the total length of that "tar" file is not significantly different from the total space those files occupied on disk (again, except for any slack). Then gzip actually crunches the archive file down to a smaller size by applying whatever compression algorithm it incorporates.
|