errors in regression test

2002-12-03 Thread Christopher Sawtell
I'm getting errors in the 'make check'. The error log is here:- http://berty.dyndns.org/check.log please, is this 'normal'? Is it safe to install? root@liberty rsync-2.5.5 # uname -a Linux liberty.localnet 2.4.19-xfs #7 Fri Nov 8 13:08:29 NZDT 2002 i686 GenuineIntel TIA 10^6 -- Sincerely etc

Re: Rsync service on Win2k?

2002-12-03 Thread Lapo Luchini
> cygrunsrv -I "RSYNC" -d "Rsync daemon" -p /usr/bin/rsync.exe -a > "--config=/etc/rsyncd.conf --daemon --no-detach" It is almost the same command line I suggest in the README and... it *used* to work. Doesn't work even in my box right now. 0_o BTW: that's the default for rsyncd.conf Right now it

Re: Rsync, Perl and samba filesystem (smbfs)

2002-12-03 Thread jw schultz
On Tue, Dec 03, 2002 at 04:33:38PM -0600, Dr. Poo wrote: > My name is Chris, Hi! > > I've got rsync being called from a perl script that is called by cron (or for > that matter, by hand) and when I 'rsync' a locally mounted samba filesystem > (eg. to /mnt/smbfs), it successfully syncs the smbfs

Re: Rsync, Perl and samba filesystem (smbfs)

2002-12-03 Thread Dr. Poo
As well though, i might add that perl is hogging 98-99% of my cpu... and all the while rsync is -Chris -- 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: Rsync, Perl and samba filesystem (smbfs)

2002-12-03 Thread Dr. Poo
Sorry, I should have noted my system to begin with. I'm running Red Hat 7.2, Perl 5.8.0 and rsync 2.4.6 The smbfs is on a windows NT (2000) server. -Chris On Tuesday 03 December 2002 04:41 pm, you wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I have had the same issue.

Rsync, Perl and samba filesystem (smbfs)

2002-12-03 Thread Dr. Poo
My name is Chris, Hi! I've got rsync being called from a perl script that is called by cron (or for that matter, by hand) and when I 'rsync' a locally mounted samba filesystem (eg. to /mnt/smbfs), it successfully syncs the smbfs to the destination directory, but without reason hangs... and take

Re: Error Code returned 139 while rsync

2002-12-03 Thread jw schultz
On Tue, Dec 03, 2002 at 12:32:20PM -0800, Saikot Chakravorty wrote: > I get this return error code (139) from rsync. > > Any pointers would help. > > Thanks, > Saikot. That is like telling us your foot hurts. -- J.W. Schu

Error Code returned 139 while rsync

2002-12-03 Thread Saikot Chakravorty
I get this return error code (139) from rsync. Any pointers would help. Thanks, Saikot. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html

Rsync client running in background

2002-12-03 Thread Robert Raszuk
All, I am using rsync to sync multiple files in the background of some other tasks from server to clients. It is launched dynamically from any of the client web cgi-s and in order for apache to continue and not delay user pages I am running in in a forked chiled with all IN/OUT/ERR closed on it.

rsync 2.5.5, "unexpected tag failures", Solaris 2.6 vs. 2.8, "--blocking-io" workaround

2002-12-03 Thread Madole, Dave BGI SF
Hi, I have been having a problem that seems related to previously reported problems but persists. I am syncing from a 2.6 Solaris box to a 2.8 solaris box. All are running rsync 2.5.5. When I sync (commands simplified for example, always using rsh): 2.8box% rsync -e rsh 2.6box:/path/path/stuf

Re: Rsync service on Win2k?

2002-12-03 Thread Greger Cronquist
--- John Morgan Salomon <[EMAIL PROTECTED]> skrev: > Okay-- > do the permissions for SYSTEM have to be explicit? > I've just given full > control > to EVERYONE. If I remember correctly, I *did* have to give permissions to SYSTEM explicitly on cygrunserv, rsync, cygwin1.dll *and* on the files t

Re: Trailing Slash Inconsistencies

2002-12-03 Thread Mark J de Jong
Dave, thanks for the response! I read my command over at least 10 times to make sure there wasn't a mistake and now I finally noticed one. The second command should read: rsync -va --stats --timeout=1800 --exclude-from=exclude.list --delete --port=1 -R [EMAIL PROTECTED]::backup/home/ /home/bac

Re: Rsync --non-existent-dir-only feature :) ..

2002-12-03 Thread Robert Raszuk
> Does the --ignore-existing option do what you want? Sounds one huge step further for this particular application ! I admit that I missed it since man rsync on the web does not show this command ;). Since it recurses down to the files under dir-x and since it could find some files modified ther

Re: Rsync --non-existent-dir-only feature :) ..

2002-12-03 Thread Dave Dykstra
Does the --ignore-existing option do what you want? It will probably recurse into the existing directories, but ignore all regular files that already exist. - Dave Dykstra On Tue, Dec 03, 2002 at 01:01:03AM +0100, Robert Raszuk wrote: > > All, > > I can't find a way to achive something probabl

Re: List of rsync service hosts?

2002-12-03 Thread Dave Dykstra
I've never seen such a list; are you looking for one in particular? - Dave Dykstra On Thu, Nov 28, 2002 at 01:15:25PM +0100, Michael Schmidt wrote: > > Hello, > > somewhere on one of the rsync webpages I have seen a list of hosts which > have running public rsync services, at least I think it

Re: symbolic links

2002-12-03 Thread Dave Dykstra
That's not a bug, it's a feature. Note that the -a option is equivalent to -rlptgoD; replace it with all but the "l" and then look through the different options with the word "link" in it in the man page and see if one of them does what you want. - Dave Dykstra On Tue, Nov 26, 2002 at 03:19:34PM

Re: Trailing Slash Inconsistencies

2002-12-03 Thread Dave Dykstra
I didn't test this out myself, but I have a couple comments. One is to note the two scenarios are quite different internally to rsync because in the second case "home" is the name of a rsyncd.conf module and not just a path. Secondly, the -R option is not used very often and may behave in some un

Re: Rsync service on Win2k?

2002-12-03 Thread John Morgan Salomon
Okay-- do the permissions for SYSTEM have to be explicit? I've just given full control to EVERYONE. I've also been trying cygrunsrv -I "RSYNC" -d "Rsync daemon" -p /usr/bin/rsync.exe -a "--config=/etc/rsyncd.conf --daemon --no-detach" My /etc/rsyncd.conf file: $ cat /etc/rsyncd.conf use chr

Re: rsync 2.5.5 port to Novell NetWare

2002-12-03 Thread bart . coninckx
We've been waiting for months for this, this is incredible good news. Thx a million for posting! Rgds, Bart Coninckx Network Administrator CNE, ASE * Sita ICT Services Lilsedijk 19 B-2340 Beerse Belgium e-mail: [EMAIL PROTECTED] Tel: + 32 (0) 14 62 82 22 F

rsync 2.5.5 port to Novell NetWare

2002-12-03 Thread Rick Moen
Hullo, all. I diligently consulted the suggested reading on the way in: > Welcome to the [EMAIL PROTECTED] mailing list! PLEASE READ THIS > IMPORTANT ETIQUETTE MESSAGE BEFORE POSTING: > http://www.tuxedo.org/~esr/faqs/smart-questions.html 'Twas a quick read, given that I'm the co-author. ;-> I