rsync hangs during transfer

2009-12-10 Thread Dimitar Dimitrov
I am running the following rsync command to synchronize directories between two servers: rsync -axvz --delete-after -e ssh /SRCDIR/ bla...@dest:/DESTDIR The transfer starts and after a short while it appears to hang after some files have been transferred. The process establishes connection on bo

Re: about --link-dest

2009-12-10 Thread Matt McCutchen
On Fri, 2009-12-11 at 01:25 +0100, Noel David Torres Taño wrote: > I don't know what I'm doing bad, but --link-dest does not work for me: > $ rsync -av --link-dest=$PWD/copy1 origin/ copy2 > Now I expect to see that the inode number of the kk file in copy2 is the same > than the inode number of

Re: Can rsync use UDP?

2009-12-10 Thread Matt McCutchen
On Thu, 2009-12-10 at 17:55 -0500, Neal B wrote: > Does rsync support using udp instead of tcp? No, rsync does not support UDP. As currently designed, it requires a stream protocol. (Though I suppose a stream could be emulated over UDP if that were somehow desirable.) -- Matt -- Please use r

about --link-dest

2009-12-10 Thread Noel David Torres Taño
Hello all: I don't know what I'm doing bad, but --link-dest does not work for me: I have three directories, the original one, the first copy and the second copy I want to populate: $ ls -li total 12 1761433 drwxr-xr-x 2 envite envite 4096 dic 10 14:04 copy1 1761434 drwxr-xr-x 2 envite envite 40

Can rsync use UDP?

2009-12-10 Thread Neal B
Hello, Does rsync support using udp instead of tcp? /etc/services has both ports. It is possible to configure xinetd to start rsync in udp mode, but a client will not connect. Thanks in advance for your reply, Neal -- Please use reply-all for most replies to avoid omitting the mailing list. To

DO NOT REPLY [Bug 6916] Avoid bundling a modified zlib

2009-12-10 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=6916 --- Comment #4 from m...@mattmccutchen.net 2009-12-10 10:19 CST --- The gzip enhancement bundled with rsync is Z_INSERT_ONLY, which lets rsync enter matched blocks in the gzip history without transmitting them in the compressed stream.

Re: multiuser rsync environment

2009-12-10 Thread Matt McCutchen
On Thu, 2009-12-10 at 12:33 +0100, Matthias Schniedermeyer wrote: > The mtime of the files are NOT kept in sync by subversion and differ > between the 2 different working copies you use. [...] > Or, (most "risky") just ignore mtimes '--ignore-times'. I think you mean --size-only. --ignore-times

Re: multiuser rsync environment

2009-12-10 Thread Matt McCutchen
On Thu, 2009-12-10 at 11:54 +0100, Angel Spassov wrote: > We are two users managing our homepage through subversion > in order to synchronize each others work. > We upload everything to the server via the following command in rsync: > > > rsync -avzt --exclude ".svn" --exclude "*~" -e ssh . >

DO NOT REPLY [Bug 6916] Avoid bundling a modified zlib

2009-12-10 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=6916 jzel...@redhat.com changed: What|Removed |Added CC||jzel...@redhat.com --- Comment

Re: multiuser rsync environment

2009-12-10 Thread Matthias Schniedermeyer
On 10.12.2009 11:54, Angel Spassov wrote: > > Dear List, > > I am looking for a solution of the following issue. > > We are two users managing our homepage through subversion > in order to synchronize each others work. > We upload everything to the server via the following command in rsync: >

multiuser rsync environment

2009-12-10 Thread Angel Spassov
Dear List, I am looking for a solution of the following issue. We are two users managing our homepage through subversion in order to synchronize each others work. We upload everything to the server via the following command in rsync: rsync -avzt --exclude ".svn" --exclude "*~" -e ssh . we