Rsync: Difference between revisions
From charlesreid1
(Created page with "<!-- Likely due to lack of memory [http://blog.e-shell.org/270]: <pre> Received disconnect from 155.97.192.16: 2: Corrupted MAC on input. rsync: writefd_unbuffered failed to wr...") |
No edit summary |
||
| Line 8: | Line 8: | ||
rsync: connection unexpectedly closed (8874 bytes received so far) [sender] | rsync: connection unexpectedly closed (8874 bytes received so far) [sender] | ||
rsync error: unexplained error (code 255) at io.c(453) [sender=2.6.9] | rsync error: unexplained error (code 255) at io.c(453) [sender=2.6.9] | ||
</pre> | |||
Here [http://fixunix.com/tools/520822-memory-usage-rsync-3-0-3-how-much-ram-should-i-have-totransfer-13-million-files.html] someone says you should see it say that it is incrementally updating files | |||
but here [http://linux.die.net/man/1/rsync] it says that that only happens with rsync version 3+ | |||
<pre> | |||
-r, --recursive | |||
This tells rsync to copy directories recursively. See also --dirs (-d). | |||
Beginning with rsync 3.0.0, the recursive algorithm used is now an | |||
incremental scan that uses much less memory than before and begins the transfer after the scanning of the first few directories have been completed. This incremental scan only affects our recursion algorithm, and does not change a non-recursive transfer. It is also only possible when both ends of the transfer are at least version 3.0.0. | |||
</pre> | </pre> | ||
--> | --> | ||