I'm attempting to do an rsync of a whole bunch of files from the machine here to the remote machine. Both user directories have identical file structure, except the remote machine is way behind on keeping up with the local machine. When I tried to run the rsync command from the current directory of "/home/rob/amet/versions/current/archinve/npa/R- save" Below is the command and output. Can somone tell me what I'm doing wrong, or perhaps the correct way to do this? There does not need to be a daemon running on the remote machine does there? # rsync -t R-save vortex:/home/rob/amet/versions/current/archive/npa/R- save rsync: link_stat "/home/rob/amet/versions/20051028/amet/archive/npa/R- save/R-save" failed: No such file or directory (2) rsync error: some files could not be transferred (code 23) at main.c (892) [sender=2.6.8] Thanks..... Sam -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20060518/f387d20b/attachment-0002.html>
On Thu, 2006-05-18 at 20:58 -0400, Sam Drinkard wrote:> I'm attempting to do an rsync of a whole bunch of files from the > machine here to the remote machine. Both user directories have > identical file structure, except the remote machine is way behind on > keeping up with the local machine. When I tried to run the rsync > command from the current directory of > "/home/rob/amet/versions/current/archinve/npa/R-save" Below is the > command and output. > > Can somone tell me what I'm doing wrong, or perhaps the correct way to > do this? There does not need to be a daemon running on the remote > machine does there? > > # rsync -t R-save > vortex:/home/rob/amet/versions/current/archive/npa/R-save > rsync: link_stat "/home/rob/amet/versions/20051028/amet/archive/npa/R- > save/R-save" failed: No such file or directory (2) > rsync error: some files could not be transferred (code 23) at main.c > (892) [sender=2.6.8] > > > Thanks..... > > Sam > _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centosReplace the first R-save with a . if that is the current directory. It's looking R-save under R-save and can't find it. Rich -- Rich Huff <rich at richhuff.com>
Sam Drinkard wrote:> I'm attempting to do an rsync of a whole bunch of files from the > machine here to the remote machine. Both user directories have > identical file structure, except the remote machine is way behind on > keeping up with the local machine. When I tried to run the rsync > command from the current directory of > "/home/rob/amet/versions/current/archinve/npa/R-save" Below is the > command and output. > > Can somone tell me what I'm doing wrong, or perhaps the correct way to > do this? There does not need to be a daemon running on the remote > machine does there? > > # rsync -t R-save > vortex:/home/rob/amet/versions/current/archive/npa/R-save > rsync: link_stat > "/home/rob/amet/versions/20051028/amet/archive/npa/R-save/R-save" > failed: No such file or directory (2) > rsync error: some files could not be transferred (code 23) at > main.c(892) [sender=2.6.8] > > > Thanks..... > > Sam > ------------------------------------------------------------------------ > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centos >also consider replacing `rsync -t` with `rsync -ave ssh`. since your probably going over the internet.