On Monday, August 15, 2022 8:56:30 PM CEST Rich Freeman wrote: > On Mon, Aug 15, 2022 at 2:34 PM J. Roeleveld <jo...@antarean.org> wrote: > > Actually, there still is a piece of software that does this: > > " app-backup/dar " > > You can tell it to split the backups into slices of a specific size. > > dar is a great tool, but unless something changed I don't think you > can tell it to pause to remount the destination directory when it > fills up. As was pointed out, tar does do this (which I thought was > limited to tape devices, but apparently it works for disk as well).
Actually, you can with the "-p / --pause" option. Also, as per the man-page, if you forget this, the process will simply inform you the target location is full and you can move slices away to a different location: " If the destination filesystem is too small to contain all the slices of the backup, the -p option (pausing before starting new slices) might be of interest. Else, in the case the filesystem is full, dar will suspend the operation, asking for the user to make free space, then continue its operation. To make free space, the only thing you cannot do is to touch the slice being written. " The pause-option will actually stop between slices and you can umount the target location and mount a different disk there. This option has been around for a while. -- Joost