I'll start this with just basics, I'll copy a file un-compressed and the size is "6.1 GiB (6,506,741,844)1,105 files, 136 sub-folders"
That took:
Code:
0:03:28 [21.7MiB/s] [==============================================================>] 100%
Now I'll compress that same folder and now:
Code:
pv '/home/me/Downloads/1.All-DL'\''s.tar.gz' > /media/me/WD-Blue-1TB/Downloads
643MiB 0:00:13 [47.1MiB/s] [==============================================================>] 100%
The destination drive is ext4, the source drive is BTRFS with /home compressed ie:
Code:
less /etc/fstab|grep /home
UUID=3213b2e0-07ed-4f08-b6a6-d1f0fdc83db4 /home btrfs subvol=/@home,defaults,compress-force=zstd:3 0 2
On my Tank Drive with ZFS is way faster:
Code:
# pv '/home/me/Downloads/1.All-DL'\''s.tar.gz' > /tank/speedtest
643MiB 0:00:00 [1.86GiB/s] [==============================================================>] 100%
Code:
# df -T /tank
Filesystem Type 1K-blocks Used Available Use% Mounted on
tank zfs 939123328 71617536 867505792 8% /tank
That should help, I think anyway.