Answer the question
In order to leave comments, you need to log in
Split tar.gz backup archive into parts during creation?
There is a need to split the backup archive into parts of 2GB
Tell me what's wrong
tar -czf /home/mybackup.tar.gz | split -b 2048m /home/video
Answer the question
In order to leave comments, you need to log in
Is the archive already on disk? Then like this:
Need to create an archive and split it? Then like this:
tar -czf - /home/video | split -b 2048m - "mybackup.tar.gz-part-"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question