Rsync: ssh inside rsync update?

2001-03-20 Thread Lachlan Cranswick
Hi, Not sure if this was answered in the recent flurry of postings but what is the status on putting a cut-down version of ssh inside rsync to allow an "easy" encryption option? Lachlan. Lachlan M. D. Cranswick Geochemistry - Lamont-Doherty Earth Observatory, Columbia University PO Box 1000, 6

Re: LFS support on AIX 4.3.3

2001-03-20 Thread Martin Pool
On 20 Mar 2001, Rusty Carruth <[EMAIL PROTECTED]> wrote: > Well, there IS this silliness (this won't compile, its just > pseudo-code, as its been a while since I've had to do this): > > union hacko_union > { > off_t foo; > long foolongs[2]; > }; Well, we do already have our own publ

Re: exclude list and patterns

2001-03-20 Thread Alberto Accomazzi
In message <[EMAIL PROTECTED]>, Dave Dykstra writes: > Well the easier syntax only motivates me 90% to personally take the time to > implement the option. If somebody can show a performance improvement that > will be enough to clinch it for me. My initial motivation for implementing > the optim

RE: Sending large file across a 10Mbit link

2001-03-20 Thread Wilson, Mark - MST
>Hmm, under those conditions, to be honest, is rsync even appropriate? >You could just copy the file with rcp/scp (heck, or even ftp). You're >not benefitting at all from rsync's algorithm. Oops, there was a mistake. The compressed file was 227Mb (2G uncompressed). The features we want to use

Re: exclude list and patterns

2001-03-20 Thread Dave Dykstra
On Tue, Mar 20, 2001 at 05:33:46PM -0500, Alberto Accomazzi wrote: ... > Dave, > > I see you've now mentioned a few times what the performance impact of > this proposed patch would be, and I can't quite understand what you're > getting at. My suggestion of --files-from came from the obvious (at

Re: exclude list and patterns

2001-03-20 Thread Alberto Accomazzi
In message <[EMAIL PROTECTED]>, Dave Dykstra writes: > It is possible to build your own complete list of files to copy and give > them all to rsync, by building a --include list and doing '--exclude *' > at the end. Currently you need to also either have --include '*/' or > explicitly list all p

RE: Sending large file across a 10Mbit link

2001-03-20 Thread David Bolen
Wilson, Mark - MST [[EMAIL PROTECTED]] writes: > The file being sent is compressed and doesn't exist at the destination at > time of sending. Compression option is not used in rsync. You've got a high speed, low latency link, copying a compressed file from source to a destination where it doesn

Sending large file across a 10Mbit link

2001-03-20 Thread Wilson, Mark - MST
Hi there I am new to rsync lists so may be posting this message to the wrong place. Please let me know if I am. We are using rsync to to send large files (larger than 2Gb) across a 10Mbit link (burstable to 30Mbit) using rsync. The link has a return latency of about 52ms. In speed comparisons

Re: Rsync in smbclient?

2001-03-20 Thread Robert Scholten
> I've also looked into running the cygwin-based rsync and sshd > on the NT box. In this case, I run into problems with getting transparent, > passwordless access (for unattended mirroring), and just the difficulty of > getting a working version of rsync, sshd and cygwin.dll installed and

Re: Rsync in smbclient?

2001-03-20 Thread Bryan K. Wright
[EMAIL PROTECTED] said: > You don't need to 'mount' the drives either, you can specify the drive > with "/cygdrive/d" and so on. Thanks for the tip. I wasn't aware that this was possible. [EMAIL PROTECTED] said: > Doing it all in reverse in the fashion you suggest (sshd on the NT > box) should

Re: exclude list and patterns

2001-03-20 Thread Dave Dykstra
On Tue, Mar 20, 2001 at 03:21:54PM -0500, Magdalena Hewryk wrote: > Hi, > > I need to match the pattern: profiles/[A-Z]{1,3}.html. > > When I use the GNU grep I get the correct result: > = > [root] # ls -ls * | /usr/local/bin/grep -v "\<[A-Z]\{1,

Re: Rsync in smbclient?

2001-03-20 Thread Dan Phoenix
Windowsi feel sorry for your company. On Wed, 21 Mar 2001, Robert Scholten wrote: > Date: Wed, 21 Mar 2001 08:26:01 +1100 (EST) > From: Robert Scholten <[EMAIL PROTECTED]> > To: Bryan K. Wright <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED] > Subject: Re: Rsync in smbclient? > > > I've

RE: exclude list and patterns

2001-03-20 Thread Magdalena Hewryk
Hi, I need to match the pattern: profiles/[A-Z]{1,3}.html. When I use the GNU grep I get the correct result: = [root] # ls -ls * | /usr/local/bin/grep -v "\<[A-Z]\{1,3\}.html" 2 -rw-r--r-- 1 root other 5 Mar 20 14:08 ABCD.html

RE: exclude list and patterns

2001-03-20 Thread Magdalena Hewryk
Hi, Thanks for the answer but the "slash" you suggest at the end of my source it's not working. As soon as I put "/" the rsync stop coping the files between two hosts. I removed ALL files from host2 and restart rsync but with the same result. No files were transferred. When I removed a "/" in

Re: New files not being added on remote machine

2001-03-20 Thread Kevin Dangoor
From: "Dave Dykstra" <[EMAIL PROTECTED]> > > > On 18 Mar 2001, Kevin Dangoor <[EMAIL PROTECTED]> wrote: > ... > > > > rsync -a -v -e ssh --delete --rsync-path=/usr/local/bin/rsync src dest > > > > > > > > I must be missing something pretty straightforward here, but I'm not sure > > > > what... >

Re: exclude list and patterns

2001-03-20 Thread Dave Dykstra
On Tue, Mar 20, 2001 at 12:48:22PM -0500, Magdalena Hewryk wrote: > Hi, > > I'm trying to get an rsync to transfer files using an --exclude-from file. > > Syntax: > === > /usr/local/bin/rsync --rsync-path=/usr/local/bin/rsync --rsh "/usr/bin/rsh" > -av --stats --exclude-from=/exp

exclude list and patterns

2001-03-20 Thread Magdalena Hewryk
Hi, I'm trying to get an rsync to transfer files using an --exclude-from file. Syntax: === /usr/local/bin/rsync --rsync-path=/usr/local/bin/rsync --rsh "/usr/bin/rsh" -av --stats --exclude-from=/export/home/rsync/filelist /prod/app host2:/prod/app > /tmp/rsync_list1.log This is

Re[2]: LFS support on AIX 4.3.3

2001-03-20 Thread Rusty Carruth
Andrew Tridgell <[EMAIL PROTECTED]> wrote: > > Speaking of this, does anyone know a portable way to get printf to > > handle off_t values when they may be larger that a long? Is there > > none? > > The best way I know of is what I used in other places in rsync, which > is this: > > off_t foo

Re: Patch to implement ssync

2001-03-20 Thread Dave Dykstra
On Mon, Mar 05, 2001 at 11:31:36AM -0600, Dave Dykstra wrote: > On Tue, Mar 06, 2001 at 02:10:18AM +1100, Martin Pool wrote: ... > > By all means put the script into the FAQ, or a doc/examples/ > > directory, but my preference is that it not be in the main system. > > If it's not in the standard

Re: Rsync in smbclient?

2001-03-20 Thread Bryan K. Wright
[EMAIL PROTECTED] said: > Could you please explain more about what you have in mind for this > feature? Do you want Samba to transparently proxy through to an rsync > server? Where does smbclient come in to it? Hi again, My idea is to use smbclient for mirroring NT clients. I know t

Re: Rsync in smbclient?

2001-03-20 Thread Hans E. Kristiansen
If my understanding is correct, I use smbmount to achieve the same thing. in order to sync a client, I use smbmount on the server to mount the client ( windows / Linux ), then rsync. This is the winner in terms of transfer rates. The ideal case would be for rsync to speak SMB protocol directly, s