<div dir="ltr"><div dir="ltr">On Thu, May 23, 2019 at 11:13 PM Paul Nijjar via kwlug-disc <<a href="mailto:kwlug-disc@kwlug.org">kwlug-disc@kwlug.org</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">The reason I think (thought) they would be was because I tried a<br>
number of versions of rsync on windows in 2014. Several versions of<br>
rsync had 4GB file size limitations: <br>
<br>
<a href="https://superuser.com/questions/728190/rsync-on-windows-not-transferring-large-files" rel="noreferrer" target="_blank">https://superuser.com/questions/728190/rsync-on-windows-not-transferring-large-files</a><br>
<br>
cygwin did not, but it was really slow when I tried it. Things may<br>
have improved now. Disabling compression might help a lot. <br>
<br></blockquote><div><br></div><div>The other key point that was mentioned, but I re-iterate since it is important, is to copy files as</div><div>a whole, and not bother to checksum them. <br></div><div><br></div><div>For the daily backup that I do from my laptop to the server, I use this (commented in the shell</div><div>script so I can remember what is going on):</div><div><br></div><div>  # -a        : Archive mode, preserve attributes<br>  # -z        : Compress data as it is being transferred<br>  # -v        : Verbose output, so we know which files are sent<br>  # -R        : Use relative path names<br>  # -x        : Do not go for files on other file systems, e.g. NFS or sshfs mounts<br>  # -W        : Copy whole files, without the delta transfer algorithm, cuts down checksum CPU usage<br>  # --inplace : Do not create another file and copy to it, so as to save space on destination disk<br>  # --delete  : Delete files on the backup server that have been deleted on this machine<br>  # -e        : Use ssh, rather than copying to an NFS mount<br></div></div></div>