On Tue, Aug 29, 2000 at 04:12:16PM +1000, [EMAIL PROTECTED] wrote:
> I have 2 Linux boxes directly connected at home via ethernet
> running RH6.1.
> The rsync version is 2.4.3.1 (or something like that. I just
> downloaded the latest but have not installed it.
> My 2 pc's are named "kuya" and the other is "linux1". I can
> telnet, ftp and rsh between pc's but no rsync. I am not
> using ssh.
> I have set up a rsync.conf file with the barest of settings.
> I enter a command like this:
> rsync -va /home/www/* linux1::kuya /home/www/* 
> and get a files copied from linux1 to linux1.
> I try rsync -v /home/www/* linux1::kuya /home/www/*
> "link_stat unable to find linux1::kuya directory".

You have the wrong usage.  You should specify just the source and the
destination, and you have three things (/home/www/*, linux1::kuya, and
/home/www/*).

I recommend not using rsync.conf since you already have rsh connectivity
between your two machines.  Then use a single colon, like:
    rsync -va /home/www/* linux1:kuya

IMPORTANT: there was a problem with rsh transport in rsync 2.4.3.  Use
2.4.4 or 2.4.5.


> I have tried soooo many variations of the rsync command but
> have only use the -vao options in one way or the other. 
> I just want to be able to sync files between 2 locally
> connected pc's without using ssh. Once I get that working I
> will go on to bigger and better things. 
> 
> Thanks in advance.
> Bill Piasecki
> [EMAIL PROTECTED]

- Dave Dykstra

Reply via email to