Rsync Auto Resume

Shane Uys shaneuys at uys.net
Fri Aug 15 04:35:27 GMT 2008


I don't have programming experience except for a little in DOS commands.
Is there something simple you have in mind for a shell loop? Thanks.

-----Original Message-----
From: Matt McCutchen [mailto:matt at mattmccutchen.net] 
Sent: Thursday, August 14, 2008 10:41 AM
To: Shane Uys
Cc: rsync at lists.samba.org
Subject: RE: Rsync Auto Resume

On Wed, 2008-08-13 at 23:53 -0500, Shane Uys wrote:
> Is there any option for auto resume? I tried --timeout=1000 but it 
> still terminates after 60s (when the internet drops).

No.  If the OS tells rsync that its network connection has broken, there
is no way rsync can reestablish the connection, so it exits.  If you
want to stop the connection from breaking, you might need to raise a TCP
timeout (I'm not familiar with this) or tunnel rsync through another
tool that maintains a virtual connection across network disruptions.
The rsync timeout is designed to make rsync exit when the connection (or
the remote process) becomes unresponsive, even if the OS doesn't
officially break the connection; it has nothing to do with preventing
the connection from breaking.

Another option would be to write a shell loop that runs rsync repeatedly
until it exits other than with a "connection reset by peer" error.

Matt


More information about the rsync mailing list