Re: Cygwin issues: modify-window and hangs

2003-01-27 Thread Max Bowsher
Dave Dykstra wrote: On Sat, Jan 25, 2003 at 06:32:08PM +0100, Greger Cronquist wrote: --- Max Bowsher [EMAIL PROTECTED] skrev: Dave Dykstra wrote: I'm using the current Cygwin release (rsync-2.5.5-2). That is rsync-2.5.5, with an added msleep(30) which is intended to deal with a possible

Re: [PATCH] open O_TEXT and O_BINARY for cygwin/windows

2003-01-27 Thread Lapo Luchini
Dave Dykstra wrote: What, in particular? I'm not a very good testcase, because I use binary mounts and unix line endings everywhere. It compiles and does syncs with remote rsync daemons, which is my normal usage. Max. See if exclude files with DOS line endings work ok for you, and also

Owner and group

2003-01-27 Thread Jean-Hugues BELPOIS
Hi all, When i use rsync with on the server : motd file = /etc/rsyncd.motd log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock [filieres] path = /home2 comment = Repertoire de sauvegarde des filieres read only = no hosts

Re: Owner and group

2003-01-27 Thread jw schultz
On Mon, Jan 27, 2003 at 11:25:38AM +0100, Jean-Hugues BELPOIS wrote: Hi all, When i use rsync with on the server : motd file = /etc/rsyncd.motd log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock [filieres] path = /home2

Big files?

2003-01-27 Thread spaceman
When rsyncing over ssh my retrieval will pooch out when there's an iso image introduced. I'm not terribly interested in monitoring files and don't care much if I do download these. Is there something I'm missing to allow files of this size to transfer??? Steve Mallett -- To unsubscribe or

small problem that I'm having...

2003-01-27 Thread Patrick Amirian
Good morning guys, Ive compiled and installed rsync 2.5.5 on 2 AIX 4.3 systems. When I try to run this command rsync --stats --progress --delete --partial --timeout=60 -aRntvz patrick@aix1::test /test I get this message and I dont know why. On both systems I run the command as root,

Securing Rsync

2003-01-27 Thread Mike Winfrey
I have a rsync server set up on a win2k server and a win xp pro computer is my client. It's working very well doing the anonymous transfers. However, I've tried setting up a password file and not having any success. rsyncd.conf on my server: use chroot = false strict modes = false hosts allow =

Re: Cygwin issues: modify-window and hangs

2003-01-27 Thread Dave Dykstra
On Fri, Jan 24, 2003 at 05:18:07PM -0600, Dave Dykstra wrote: I had a friend run some Cygwin tests and we found that --modify-window=1 works just as well as --modify-window=2 on FAT filesystems to copy files from Unix and detect the difference in granularity. FAT filesystems always have

Re: Securing Rsync

2003-01-27 Thread bart . coninckx
It's my understanding that passwords don't work in a cygwinned rsync. You might consider limiting the modules to a certain trusted IP-address . Kind regards, Bart Coninckx Network Administrator CNE, ASE * Sita ICT Services Lilsedijk 19 B-2340 Beerse Belgium

Re: Securing Rsync

2003-01-27 Thread Max Bowsher
Mike Winfrey wrote: I have a rsync server set up on a win2k server and a win xp pro computer is my client. It's working very well doing the anonymous transfers. However, I've tried setting up a password file and not having any success. rsync.secrets on my rsync server user:password I

Re: Securing Rsync

2003-01-27 Thread Max Bowsher
[EMAIL PROTECTED] wrote: It's my understanding that passwords don't work in a cygwinned rsync. I see no reason why that should be the case. Max. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read:

Re: Securing Rsync

2003-01-27 Thread bart . coninckx
I seem to remember that one of the links in resources at www.rsync.org pointed to a page that talked about running rsync on a Win32. This page warned for the use of passwords. But if it works, it works, right? Kind regards, Bart Coninckx Network Administrator CNE, ASE

Links in Resources relating to use on Windows are extremely out-of-date - could be misleading.

2003-01-27 Thread Max Bowsher
I suggest either removing the two Using rsync on Windows 9x/NT documents, or placing a prominent warning on them that they are no longer current. Max. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read:

RE: Securing Rsync

2003-01-27 Thread Lee Wiltbank
On cygwin and Netware, I think that message is coming from the default strict modes in rsyncd.conf. For these, be sure to add strict modes=no in the rsyncd.conf. Lee -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read:

Re: Cygwin issues: modify-window and hangs

2003-01-27 Thread Max Bowsher
Dave Dykstra wrote: This modify-window default of 1 has been causing some trouble on the rsync test suite on the Cygwin test machine on build.samba.org. The problem is that some files get created and immediately copied within one second, and then the rsync code that implements '-p' checks to

Re: [PATCH] open O_TEXT and O_BINARY for cygwin/windows

2003-01-27 Thread Max Bowsher
Dave Dykstra wrote: On Mon, Jan 27, 2003 at 10:46:16AM +0100, Lapo Luchini wrote: I can test that before releasing cygwin's 2.5.6-1 package, unfortunately I have almost *no* free time until after friday (university test on thursday ^_^) Anyway Max is also right, local issues can be resolved

RE : small problem that I'm having...

2003-01-27 Thread Patrick Amirian
This is what I get with the vvv option local_version=24 remote_version=24 receiving file list ... link_stat . : Permission denied received 0 names done recv_file_list done client: nothing to do now I run my command line on the client side, should I run this on the server side

RE: RE : small problem that I'm having...

2003-01-27 Thread Green, Paul
The error that says "link_stat . : Permission denied" means that rsync was unable to get the status of the file named ".".This is a Unixism for the name of the current directory. You don't have access to it. That's all I can help you with right now. PG -Original Message-From:

Re: Cygwin issues: modify-window and hangs

2003-01-27 Thread Dave Dykstra
On Mon, Jan 27, 2003 at 04:38:09PM -, Max Bowsher wrote: Dave Dykstra wrote: This modify-window default of 1 has been causing some trouble on the rsync test suite on the Cygwin test machine on build.samba.org. The problem is that some files get created and immediately copied within

Re: [PATCH] open O_TEXT and O_BINARY for cygwin/windows

2003-01-27 Thread Dave Dykstra
On Mon, Jan 27, 2003 at 04:45:25PM -, Max Bowsher wrote: Dave Dykstra wrote: On Mon, Jan 27, 2003 at 10:46:16AM +0100, Lapo Luchini wrote: I can test that before releasing cygwin's 2.5.6-1 package, unfortunately I have almost *no* free time until after friday (university test on

Re: Cygwin issues: modify-window and hangs

2003-01-27 Thread jw schultz
On Mon, Jan 27, 2003 at 03:57:16PM -0600, Dave Dykstra wrote: On Mon, Jan 27, 2003 at 04:38:09PM -, Max Bowsher wrote: Dave Dykstra wrote: This modify-window default of 1 has been causing some trouble on the rsync test suite on the Cygwin test machine on build.samba.org. The

Re: Cygwin issues: modify-window and hangs

2003-01-27 Thread Dave Dykstra
Thanks, you saved me some trouble. I put it in. - Dave On Mon, Jan 27, 2003 at 06:52:30PM -0800, jw schultz wrote: On Mon, Jan 27, 2003 at 03:57:16PM -0600, Dave Dykstra wrote: On Mon, Jan 27, 2003 at 04:38:09PM -, Max Bowsher wrote: Dave Dykstra wrote: This modify-window default

Re: [PATCH] open O_TEXT and O_BINARY for cygwin/windows

2003-01-27 Thread Dave Dykstra
On Mon, Jan 27, 2003 at 04:01:46PM -0600, Dave Dykstra wrote: On Mon, Jan 27, 2003 at 04:45:25PM -, Max Bowsher wrote: ... Cygwin has gone through many minor versions since then. I suggest releasing an rsync without the hack, but with a command line option to turn it on. That way, we

list filtering

2003-01-27 Thread Martin Pool
Because of the enormous amount of traffic being generated by Windows viruses[0] I have turned on Mailman attachment filtering on the high-traffic samba.org lists. Lists will now pass only text/plain MIME parts through to the list. multipart/alternative messages with both text and html forms will

CVS update: rsync

2003-01-27 Thread Paul Green
Date: Mon Jan 27 16:33:47 2003 Author: paulg Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv12228/rsync Modified Files: TODO Log Message: Added a TODO item about temporary file names bumping up against the maximum name length. (I have an unfinished patch that will

CVS update: rsync

2003-01-27 Thread dwd
Date: Tue Jan 28 05:05:54 2003 Author: dwd Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv538 Modified Files: NEWS config.h.in configure configure.in main.c Log Message: Remove the Cygwin msleep(100) before the generator kills the receiver, because it caused the