This is just a note to myself about splitting a tar archive into multiple smaller files on the fly and joining them again. It's based on this answer to this question on stackoverflow. # create archives $ tar cz . | split -b 100GiB - /mnt/8TB/backup.tgz_ This uses the tar command to create a gzip-ed … Continue reading Splitting and joining tar archives