I would like to interrupt rsync
with ctrl-c
(let's say after half the file has transferred) and resume without having to resend the data that has already been transferred.
The stackexchange/google information I have found seems conflicting. I found some some who say use --partial
and some who say use --append
. To me it sounds like they both would work.
If I want to interrupt rsync with ctrl-c, should I use --partial
or --append
?
If both would work, when is it better to use one vs the other?
--append-verify
actually has to actually read the parts of the file on both sides that are there, t isn't any faster due to the bottleneck being an older drive on the read side and not the LAN itself. – Michael May 21 '16 at 15:41--append
anywhere, but only if you can guarantee all affected files haven't changed. (I also tend to use it only for a very tightly controlled set of files; most of the time I treat it as an unsafe optimisation.) – Chris Davies Mar 10 '17 at 12:00--partial-dir
? @roaima – alper Oct 15 '18 at 08:47--partial-dir
also recommended. Is it recommended to use instead of--partial
? – alper Oct 15 '18 at 08:50--partial-dir
, but I've not yet tried it. – Chris Davies Oct 15 '18 at 09:40