rsync problems from flist.c change

2004-04-22 Thread Kurt Hornik
On behalf of the development team of R (www.R-project.org), I would like to report the following problem with recent versions of rsync. First, some background info. The R Development Core Team uses CVS for maintainins its source code archive. Additionally, there is a mechanism for mirroring

Re: rsync problems from flist.c change

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 08:21:24AM +0200, Kurt Hornik wrote: I can partially reproduce this by (starting from a state where the two dirs are in sync) copying an additional file into 'Recommended' and trying different versions of rsync to see whether the file gets removed. Does the file you

Re: Error?

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 01:01:34AM -0400, Kevin Kallsen wrote: 2004/04/20 02:00:00 [2702] rsyncd version 2.6.0 starting, listening on port 873 2004/04/20 02:00:59 [2707] rsyncd version 2.6.0 starting, listening on port 873 2004/04/20 02:00:59 [2707] rsync: open inbound socket on port 873

restrict access for rsync

2004-04-22 Thread hulo
hello, i have network 10.42.20.0/24. Every machine has installed rsync. How to wrapp them(all machines), that only one of them (10.42.20.43) should has access to all of them. Is solution in /etc/hosts.allow, deny? thanks, huloslav -- To unsubscribe or change options:

bad behaviour of dry run -n option

2004-04-22 Thread Denis Lagno
I use rsync-current. I tried to do something like: rsync --delete -anvc /dir1 /dir2 It is natural to expect to see printed out all files that would be updated including files that would be deleted. But such invocation do not print files that would be deleted. -- To unsubscribe or change

Re: rsync problems from flist.c change

2004-04-22 Thread Kurt Hornik
Wayne Davison writes: On Thu, Apr 22, 2004 at 08:21:24AM +0200, Kurt Hornik wrote: I can partially reproduce this by (starting from a state where the two dirs are in sync) copying an additional file into 'Recommended' and trying different versions of rsync to see whether the file gets

Re: Error?

2004-04-22 Thread Paul Slootman
On Thu 22 Apr 2004, Wayne Davison wrote: Date: Thu, 22 Apr 2004 02:48:58 -0700 From: Wayne Davison [EMAIL PROTECTED] To: Kevin Kallsen [EMAIL PROTECTED] X-Spam-Status: No, hits=0.0 required=3.2 tests=none autolearn=ham version=2.63 Cc: [EMAIL PROTECTED] Subject: Re: Error? On Thu, Apr 22,

Re: Error?

2004-04-22 Thread Tim Conway
Can we see the crontab line? For some reason, you're repeating the daemon startup. Tim Conway Unix System Administration Contractor - IBM Global Services desk:3032734776 [EMAIL PROTECTED] I have the latest rsync running on mandrake official 10. At 2:30 I run rsync --daemon from cron to

RE: Error?

2004-04-22 Thread Kevin Kallsen
1 2 * * * rsync --daemon 0 8 * * * killall rsync -Original Message- From: Tim Conway [mailto:[EMAIL PROTECTED] Sent: Thursday, April 22, 2004 9:25 AM To: Kevin Kallsen Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Error? Can we see the crontab line? For some reason, you're

Re: --delete, what am I doing wrong?

2004-04-22 Thread Brian McEntire
Thanks Wayne! Both options worked well -- upgrading clients to 2.6.0 or using /. instead of / to specify the root directory. Perhaps a recap for the regulars here, but maybe useful to some -- I found that I only needed to upgrade to 2.6.0 on the remote/source side. Upgrading to 2.6.0 on my

rsync'ing large files

2004-04-22 Thread Jeffrey Layton
I'm using rsync to copy some large (1GB) oracle datafiles. I've noticed that sometimes it transfers some of the files twice. Some earlier posts to this list that I saw in the archives seemed to indicate that this is a problem with the rsync algorithm itself when dealing with large files. Some of

Re: rsync'ing large files

2004-04-22 Thread Brian Cuttler
I can't address the algoritm questions but I'll tell you that we had a tremendous improvement is speed when we switched to a newer version of rsync. We are using it (in this case) to rsync our oracle files to a separate partition on the system cpu. I'm using rsync to copy some large (1GB)

RE: Error?

2004-04-22 Thread Tim Conway
OK, I'm stumped. Tim Conway Unix System Administration Contractor - IBM Global Services desk:3032734776 [EMAIL PROTECTED] 1 2 * * * rsync --daemon 0 8 * * * killall rsync -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read:

RE: exclude-from and include-from confusion

2004-04-22 Thread Dave . Turner
Thanks Wayne! That's doing the trick. I've been playing with combinations and am now getting what I expect. I think I'll be using something close to this for my exclude file to get what I want. + /testdir/* - /*/ Combining that with different modules will make it a much simpler task. Thanks!

Re: Error?

2004-04-22 Thread Jim Salter
I'd bet there's something else starting up rsync besides cron. Possibly a script in periodic, possibly a startup/init script, possibly something in another crontab, possibly inetd/xinetd. Check ALL the possible locations for things that periodically get fired off to startup programs, and get

Re: rsync problems from flist.c change

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 01:06:58PM +0200, Kurt Hornik wrote: Is there a way of overriding the excludes from .cvsignore? It depends on which one you mean. The global ones are inserted into the exclude list at the point they're mentioned. For instance: rsync --include='*.tar.gz' -C from/ to

Re: rsync'ing large files

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 11:23:18AM -0400, Brian Cuttler wrote: I can't address the algoritm questions but I'll tell you that we had a tremendous improvement is speed when we switched to a newer version of rsync. Yes, rsync 2.6.0 has some big improvements in the checksum processing for large

Problem with ownership of non-root files at destination

2004-04-22 Thread John Desmond
I'm using rsync to mirror my Sharp SL-5500 Linux PDA home directory to my Linux desktop over a TCP/IP-on-USB link. I'm running the following command as root on the 5500: /home/QtPalmtop/bin/rsync -av /home/zaurus \ 192.168.129.1::zaurus I'm running the rsync server out of xinetd. I have

Re: Problem with ownership of non-root files at destination

2004-04-22 Thread Jim Salter
You're using the -a flag, which among other things means rsync will try to preserve ownership. If your PDA is running linux, most likely the UID it's using for ownership of the files you're transferring matches the UID of your Lefty account on your PC. Jim Salter JRS Systems I'm using rsync

[PATCH] --timelimit and --stopat

2004-04-22 Thread John Taylor
Greetings, Upon a suggestion to improve the --timelimit patch, I have also added a --stopat option. You can get the patch from this URL and/or cut/paste it from below. http://www.terry.uga.edu/~jft/rsync-timelimit-stopat.patch.gz Here are the details... --timelimit=T This option

Re: rsync'ing large files

2004-04-22 Thread Peter L. Wargo
On Thu, 22 Apr 2004, Wayne Davison wrote: * Per-file dynamic block size is now sqrt(file length). The per-file checksum size is determined according to an algorithm provided by Donovan Baarda which reduces the probability of rsync algorithm corrupting data and falling

Rsync Error..

2004-04-22 Thread Naveen Babu
Hello all, I am having a problem with rsync. I want to backup data from one machine to another remote machine. I have Freebsd4.7 on source and FreeBSD4.9 on destination machines. rsync is installed on both the machines. I gave the following command at the source machine. rsync -avvznrbe rsh

Re: rsync problems from flist.c change

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 10:42:44AM -0700, Wayne Davison wrote: The global [cvs-excludes] are inserted into the exclude list at the point they're mentioned. Sorry, that was based on a false remembrance. The global cvs-excludes are always appended to the list after the user-supplied exclude

symlink bug still not fixed

2004-04-22 Thread Peter Sturdza
Hi. I found and reported a bug about a year ago regarding symbolic links but haven't seen any mention of it since and it is still present in 2.6.1-pre2. Just want to make sure it isn't forgotten. It can be reproduced by synchronizing two directories, one of which contains a normal file and the

Re: symlink bug still not fixed

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 08:01:29PM -0700, Peter Sturdza wrote: I found and reported a bug about a year ago regarding symbolic links but haven't seen any mention of it since and it is still present in 2.6.1-pre2. Just want to make sure it isn't forgotten. Thanks for the reminder. I hope to

Re: symlink bug still not fixed

2004-04-22 Thread Peter Sturdza
--- Wayne Davison [EMAIL PROTECTED] wrote: ... The way rsync currently works, it doesn't consider a file and a symlink to be the same thing, so the -u option will not prevent a file from being replaced by a symlink. ... Hmm. But the symlink is older. I would expect the symlink to

cum like a porr actor

2004-04-22 Thread harmsen
spervmamax is formulated to: Improve overall spergm production Improve speram quality Improve sperpm integrity Improve spercm motility Improve sperdm morphology http://happyyou.net/sm/index.php?pid=eph9058 -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync

Re: symlink bug still not fixed

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 08:54:57PM -0700, Peter Sturdza wrote: Hmm. But the symlink is older. I would expect the symlink to overwrite an older file, but not a newer one, which it does. If it was an older directory, would you expect it to also not replace a newer file? Rsync doesn't work that

Re: symlink bug still not fixed

2004-04-22 Thread Peter Sturdza
--- Wayne Davison [EMAIL PROTECTED] wrote: I will consider such a change for the future, but I'll have to spend time contemplating the repercussions. Thanks. If you decide against changing the behavior, then please add a note in the man page (perhaps where the -u option is explained and in

CVS update: rsync

2004-04-22 Thread Wayne Davison
Date: Thu Apr 22 08:41:03 2004 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv27846 Modified Files: exclude.c Log Message: The debug output for add_exclude() now needs to limit the pattern to print only pat_len chars. Revisions: exclude.c

CVS update: rsync

2004-04-22 Thread Wayne Davison
Date: Thu Apr 22 09:58:09 2004 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv11183 Modified Files: proto.h Log Message: Regenerated. Revisions: proto.h 1.188 = 1.189

CVS update: rsync

2004-04-22 Thread Wayne Davison
Date: Thu Apr 22 09:58:15 2004 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv11220 Modified Files: exclude.c Log Message: Initialize the new debug_type string in each exclude list and output it in a couple extra debug messages. When we free an

CVS update: rsync

2004-04-22 Thread Wayne Davison
Date: Thu Apr 22 09:58:18 2004 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv11239 Modified Files: flist.c Log Message: No need to pass a debug string to check_exclude() anymore. When we free an exclude list, make sure we don't clear the debug_type

CVS update: rsync/patches

2004-04-22 Thread Wayne Davison
Date: Thu Apr 22 16:43:46 2004 Author: wayned Update of /data/cvs/rsync/patches In directory dp.samba.org:/tmp/cvs-serv27445 Modified Files: ODBC-dblog.diff chmod-option.diff copy-atimes.diff delete-sent-files.diff ignore-case.diff link-by-hash.diff

CVS update: rsync

2004-04-22 Thread Wayne Davison
Date: Thu Apr 22 21:35:45 2004 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv19198 Modified Files: rsync.yo rsync.1 Log Message: Got rid of a wrong paragraph. Revisions: rsync.yo1.160 = 1.161

CVS update: rsync/patches

2004-04-22 Thread Wayne Davison
Date: Thu Apr 22 23:58:12 2004 Author: wayned Update of /data/cvs/rsync/patches In directory dp.samba.org:/tmp/cvs-serv22511 Added Files: verify-patches Log Message: A shell script that makes it easier to verify and fix the patches. Revisions: verify-patches NONE = 1.1

CVS update: rsync/patches

2004-04-22 Thread Wayne Davison
Date: Fri Apr 23 00:10:28 2004 Author: wayned Update of /data/cvs/rsync/patches In directory dp.samba.org:/tmp/cvs-serv24379 Modified Files: verify-patches Log Message: Changed the directory structure a little and added a quit command. Revisions: verify-patches 1.1 = 1.2