Re: several errors with irregular pathnames

2004-12-15 Thread Wayne Davison
On Mon, Nov 15, 2004 at 02:28:16PM +0100, Eric van Blokland wrote: After this error, I tried to copy a complete directory which caused the first mentioned problem. It appears that the pathname somehow gets misinterpreted and split into two separates. When using an rsync server, a repeat of the

Re: rsync seems to hang when --delete option is used.

2004-12-15 Thread Wayne Davison
On Thu, Dec 09, 2004 at 04:02:05PM -0500, Tony Shum wrote: When I use --delete option, it seems to hang for over 8 hours on 4.5Gb of total data. The --delete option causes rsync to read the local hierarchy, and construct a list of files to compare with the remote file list. If it is hanging,

Re: rsync hangs when tunneling... help!

2004-12-15 Thread Jay 'Whip' Grizzard
Thanks--these have enough information for a cursory analysis, where we can see that the sender is using select to wait to write some data, and the receiver is using select to wait to read some data (and the generator is waiting to pump more checksum data to the sender). Thus, everything

[Bug 2130] suppressing progress bar when not the foreground process

2004-12-15 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=2130 --- Additional Comments From [EMAIL PROTECTED] 2004-12-15 03:47 --- I've treated having getpgrp() as having tcgetpgrp() in my own code. However, it may be safer to add a separate autoconf check, and only enable this functionality #if

Re: Rsync Hangs when syncing two Windows Drives Locally..?

2004-12-15 Thread Wayne Davison
On Thu, Nov 18, 2004 at 02:12:29PM -0700, Jesse Shumaker wrote: rsync -vvva --delete /cygdrive/d /cygdrive/e What do you guys think is the issue here? Probably the third -v. Remove it, and it should no longer hang. Alternately, upgrade to the CVS version for a fix that makes -vvv work with

Re: rsync seems to hang when --delete option is used.

2004-12-15 Thread Marc G. Fournier
Actually, I get similar on our system(s) for very large directory structures ... I've changed my scripts so that it times out after 15 minutes and re-tries up to 5 times before considering it a failure, which appears to have 'gotten around' the problem ... When it hangs, i've tried setting

Re: Inflate Error?

2004-12-15 Thread Chuck Wolber
On Tue, 7 Dec 2004, Wayne Davison wrote: On Mon, Dec 06, 2004 at 09:38:14AM -0800, Chuck Wolber wrote: inflate (token) returned -5 You should be able to avoid this error by turning off the --compress option. Yup, that solved it. To figure out why it is occurring would require someone

rsync and broken symlinks

2004-12-15 Thread Yakov Hrebtov
Hello! I need a suggestion. How to copy broken symlink as symlink with rsync? Example: # mkdir src # ln -s file-that-doesnt-exist src/broken-link # rsync -a src/ dst/ # ls -l src/ total 0 lrwxrwxrwx1 root root 22 Dec 16 10:31 broken-link - file-that-doesnt-exist # ls -l dst