tar.gz downloaded from Files tab is larger than the original file.
Test code:
Console:
dd if=/dev/zero of=output10.dat bs=1M count=10
dd if=/dev/zero of=output11.dat bs=1M count=11
tar -czf test.tar.gz output10.dat output11.dat
ls -la test.tar.gz
Output: 21614 Sep 6 09:36 test.tar.gz
i.e. 21.107421875KB.
Local PC:
ls -la test.tar.gz
22026240 Sep 6 17:37 test.tar.gz
i.e. 21.005859375MB.
What's going on?
It do takes longer to download for my real repo.tar.gz, and the file on local takes more space. The good news is the extracted files remain the same, verified by diff -r
.