Hi All, I'm getting the following error and don't know how to fix. Paths are correct. I run the rsync and get error and the cursor just hangs. bash-2.03$ rsync -e ssh -av /export/home/db2inst1/db2_backup db2inst1@enolagay: /export/home/db2inst1/db2_backup building file list ... rsync: link_stat "/export/home/db2inst1/db2inst1@enolagay:" failed: No such file or directory (2) done db2_backup/ db2_backup/CAMPMOR5.0.db2inst1.NODE0000.CATN0000.20050831085320.001 TIA, Tim -------------- next part -------------- HTML attachment scrubbed and removed
On Fri, Sep 09, 2005 at 01:30:51PM -0400, Timothy Mercer wrote:> bash-2.03$ rsync -e ssh -av /export/home/db2inst1/db2_backup > db2inst1@enolagay: /export/home/db2inst1/db2_backupYou have a space between the hostspec and the destination, which makes it a separate arg. As written, you are transferring two local items to a local directory. If you want to transfer one local item (presumably a directory) to a remote directory, remove that space. ..wayne..