rsync 2.5.4 on win2k machine

2002-03-19 Thread David Starks-Browning
On Tuesday 19 Mar 02, Raviraj Murdeshwar writes: > > Hi, > i have downloaded rsync 2.5.4 source and was trying to compile it on win2k > machine. > > is it supported on win2k machine ? It requires Cygwin, which you can get from . Moreover, you can install rsync directly using

Re: Suspicious sizes by different C compilers

2002-03-19 Thread 'Martin Pool'
On 19 Mar 2002, "Granzow, Doug (NCI)" <[EMAIL PROTECTED]> wrote: > >On gcc, rsync builds by default with debug symbols included. If you > >strip both executables, they should end up about the same size. > > > How do you "strip" an executable? Use "make install-strip", or see the manual for y

Re: jitterbug bug tracker ( was Re: rsync kills all user processes on fork failure)

2002-03-19 Thread Adrian Ho
On Tue, Mar 19, 2002 at 03:19:26PM -0800, Martin Pool wrote: > The Faq-O-Matic seems to be working reasonably well, because people > are really actively answering questions and pruning questions. Speaking of which, every FOM link seems to be broken, like this: http://rsync.samba.org/cgi-bin/rsyn

jitterbug bug tracker ( was Re: rsync kills all user processes on fork failure)

2002-03-19 Thread Martin Pool
On 19 Mar 2002, Paul Haas <[EMAIL PROTECTED]> wrote: > I filed this as bug 4150 http://rsync.samba.org/cgi-bin/rsync/ Jitterbug, good, but I don't think anybody is really maintaining it at the moment. (For example, there are 733 messages in "incoming".) I wonder if it would be better to just di

Re: [PATCH] rsync kills all user processes on fork failure

2002-03-19 Thread Martin Pool
On 19 Mar 2002, Paul Haas <[EMAIL PROTECTED]> wrote: > I filed this as bug 4150 http://rsync.samba.org/cgi-bin/rsync/ > > We had a few hundred hung processes and reached the limit for "max user > processes" (see the ulimit command). rsync did not handle this very > well. It passed -1 as a PID

rsync 2.5.4 on win2k machine

2002-03-19 Thread Raviraj Murdeshwar
Hi, i have downloaded rsync 2.5.4 source and was trying to compile it on win2k machine. is it supported on win2k machine ? Please ignore warnings below about mktemp -- it is used in a safe way gcc -g -O2 -DHAVE_CONFIG_H -Wall -W -o rsync rsync.o generator.o receiver.o cle anup.o sender.o exclu

RE: transferring individual files question, pull vs. push

2002-03-19 Thread Jeff Field
Here's the answer...works like a charm! Thanks! Jeff > -Original Message- > From: Lee Eakin [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 19, 2002 2:22 PM > To: Jeff Field > Cc: [EMAIL PROTECTED] > Subject: Re: transferring individual files question, pull vs. push > > > Try quoting

Re: Incremental Diffs?

2002-03-19 Thread Dave Dykstra
On Mon, Mar 18, 2002 at 11:22:40AM -0600, Kim Scarborough wrote: > > it looks like you're correct in your assesment of the problem > > (i.e. the whole file is copied). You don't say what version of rsync > > you're running, but there may be a bug in the current version introduced > > recently wit

Re: transferring individual files question, pull vs. push

2002-03-19 Thread Wayne Davison
On Tue, 19 Mar 2002, Jeff Field wrote: > rsync -e ssh source-box.x.com:/var/qmail/control/file1 \ > source-box.x.com:/var/qmail/control/file2 \ > source-box.x.com:/var/qmail/control/file3 \ > source-box.x.com:/var/qmail/control/file4 \ > /var/qmail/control You can't have multiple

Re: transferring individual files question, pull vs. push

2002-03-19 Thread Lee Eakin
Try quoting the file list like this: rsync -e ssh source-box.x.com:'/var/qmail/control/file1 \ /var/qmail/control/file2 \ /var/qmail/control/file3 \ /var/qmail/control/file4' \ /var/qmail/control Your shell on the remote system will split out the multiple names, but locally it is part of the

Re: Excludes not working

2002-03-19 Thread Mike Rubel
Bart Brashers wrote: > ... I mount them using samba (to avoid having to install the > cygwin version on each box) then run (using rsync 2.5.2 run from crontab) > > rsync -vuaz --delete-excluded --exclude-from=/root/bin/rsync.exclude \ >--modify-window=2 /mnt/pc/machine/share /backup/machine

Re: include exclude help please.

2002-03-19 Thread Wayne Davison
Seems to me that the simplest solution is to name the directory explicitly: rsync -a --include "*/" --include "*.tif" --exclude "*" /film/jonah /tmp/film To accomplish the same thing using includes, you could do this: rsync -a --include /jonah --include "/jonah/**/" --include "*.tif" \

Re: include exclude help please.

2002-03-19 Thread tim . conway
++ Tim, thanks for the help...but, it still isn't working. any more ideas? I have tried: rsync -avv --include "/film/jonah/**/sourceimages/*.tif" --exclude "*" /film /tmp rsync -avv --include "/film/jonah/

transferring individual files question, pull vs. push

2002-03-19 Thread Jeff Field
Can't seem to find the answer anywhere... I'm currently using an rsync script on the source box to transfer some individual files to the destination box...all works well. The script: rsync -e ssh \ /var/qmail/control/file1 \ /var/qmail/control/file2 \ /var/qmail/control/file3 \ /var/qmail/contr

Re: --diff option for rsync (Re: rsync feature request)

2002-03-19 Thread Dave Dykstra
On Fri, Mar 15, 2002 at 11:49:35AM +1100, Martin Pool wrote: > On 14 Mar 2002, [EMAIL PROTECTED] wrote: > > I'm sure you get a million and one requests for changes to rsync. I thought > > I would put my bid in and sugest that a feature to perform a unix style > > diff of files that are found to be

[PATCH] rsync kills all user processes on fork failure

2002-03-19 Thread Paul Haas
I filed this as bug 4150 http://rsync.samba.org/cgi-bin/rsync/ We had a few hundred hung processes and reached the limit for "max user processes" (see the ulimit command). rsync did not handle this very well. It passed -1 as a PID to kill(). When kill() gets -1, it kills all of the processes

Re: include exclude help please.

2002-03-19 Thread Joe Rice
Tim, thanks for the help...but, it still isn't working. any more ideas? I have tried: rsync -avv --include "/film/jonah/**/sourceimages/*.tif" --exclude "*" /film /tmp rsync -avv --include "/film/jonah/*/sourceimages/*.tif" --exclude "*" /film /tmp rsync -avv --include "/film/jonah/**/sourceima

Excludes not working

2002-03-19 Thread Brashers, Bart -- MFG, Inc.
Hello, I'm a relative newbie to rsync, I use it to backup (mirror) a bunch of Windows boxes. I mount them using samba (to avoid having to install the cygwin version on each box) then run (using rsync 2.5.2 run from crontab) rsync -vuaz --delete-excluded --exclude-from=/root/bin/rsync.exclude

Re: (fwd from uke@jeremy.org) thanks and patch

2002-03-19 Thread Mark Eichin
Wouldn't using detached signatures make more sense for this application? -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html

Re: include exclude help please.

2002-03-19 Thread tim . conway
Joe: relative to /film, there is no film/,, so to get things starting at jonah under /film, you name it as '/jonah', like so: rsync -avv --include "/jonah/**/sourceimages/*.tif" --exclude "*" /film /tmp I still haven't seen The Fellowship of the Ring, but I'm planning on camping out overnight

Re: (fwd from uke@jeremy.org) thanks and patch

2002-03-19 Thread jeremy bornstein
Martin, The encryption program I'm using, gpg, includes a small bit of header information with the encrypted file, thus changing the size. Gpg is a public key encryption program which at least includes the numeric key ID of the recipient's key. Since folks can have many keys, this is useful inf

include exclude help please.

2002-03-19 Thread Joe Rice
hi. I know this is a big topic on the list, please forgive me. rsync -avv --include "/film/jonah/**/sourceimages/*.tif" --exclude "*" /film /tmp i'm trying to copy all *.tif 's that are in a */sourceimages/ directory and that are only under /film/jonah. i would like to copy the directory t

(fwd from uke@jeremy.org) thanks and patch

2002-03-19 Thread Martin Pool
Jeremy, I'm glad you like rsync. Why does your encryption program not produce a file of the same size every time it is run on the same input? I can see what the patch does, but I'm having a bit of trouble understanding whether it would be generally useful. -- Martin --- Begin Message ---