Re: rsync error: some files could not be transferred -- How to ignore

2005-06-16 Thread Wayne Davison
On Thu, Jun 16, 2005 at 08:49:54PM +0530, [EMAIL PROTECTED] wrote: > Is there any way to ignore these errors when i do file transfer using > rsync? What do you mean by ignore? They're just warnings, so rsync ignores them already for most things, just not deletions that happen after the warnings (

Re: Include and Exclude

2005-06-16 Thread Wayne Davison
On Thu, Jun 16, 2005 at 10:00:07AM +0200, fRANz wrote: > rsync -avzHP --include "3.4/" --include "3.4/**" --include "4.0/" > --include "4.0/**" --exclude "*" --bwlimit=30 > rsync.example.foo::packages/centos/* . An easier way to do this is to use: --include=/3.4/ --include=/4.0/ --exclude='/*

Re: logging

2005-06-16 Thread Wayne Davison
On Wed, Jun 15, 2005 at 11:55:29PM -0400, sc0ri0n wrote: > I do not see a parameter to specify a log file. Why would that be? That all depends on what you're expecting. See the rsyncd.conf manpage for how to make the daemon log to a file. No other log-file output is directly supported (e.g. for

Re: handling duplicate names deterministically and adding alternative checksum algorithms

2005-06-16 Thread Wayne Davison
On Thu, Jun 16, 2005 at 02:01:54PM -0600, Andrew Shewmaker wrote: > Is rsync going to stick with qsort as the default sorting algorithm? Yes. I don't wish to increase the memory use for really large file sets that have no need for deterministic unduplication. > Would a patch to add a --mergesort

Re: handling duplicate names deterministically and adding alternative checksum algorithms

2005-06-16 Thread Andrew Shewmaker
Thanks for the pointer to that mergesort thread and for the md5 patch. Is rsync going to stick with qsort as the default sorting algorithm? Would a patch to add a --mergesort option be accepted? Even though most of my boxes are Linux and it appears that qsort usually runs as a mergesort, I would

using rsync on files that are being written to

2005-06-16 Thread lamad
I know people who shutdown the services on their *nix box before backing up with rsync. this is to avoid accidentily backing up files that are being written to, which might result in a corrupt backup of that file. is this even a concern? if it is, what methods are available for a small shop t

rsync error: some files could not be transferred -- How to ignore

2005-06-16 Thread sanalkumar.siva
Title: Message Hello all,       I'm using rsync client in Linux box and cygwin rsync daemon in Win 2k machine. When i do transfer of directory contents "C:/Documents And Settings/Administrator/Local Settings/Application Data/Microsoft/Windows" using rsync, i'm getting the following error th

Include and Exclude

2005-06-16 Thread fRANz
Hi guys, actually with this command: rsync -avzHP --include "3.4/" --include "3.4/**" --include "4.0/" --include "4.0/**" --exclude "*" --bwlimit=30 rsync.example.foo::packages/centos/* . i correctly rsync only 3.4 and 4.0 dirs of repository... I would like to rsync only dirs "xxx" and "yyy" fro