Displaying 2 results from an estimated 2 matches for "auvvvz".
Did you mean:
aivvve
2005 Oct 11
1
Rsync hangs after a while when tunneling from A->B->C
..._
#!/bin/bash
# Command to synchronize (only update) two computers based on RSYNC
FOLDER_SOURCE="/cygdrive/d/scripts"
FOLDER_TARGET="/cygdrive/g/stefaanlh/scripts"
PC_SOURCE="ip of pc-A"
PC_TARGET="ip of pc-C"
echo Synchronizing of SOURCE with TARGET
rsync -auvvvz --timeout=999 -e "ssh stefaanlh@ip-pc-B ssh"
$FOLDER_SOURCE/ $PC_TARGET:$FOLDER_TARGET
echo Synchronizing of TARGET with SOURCE
rsync -auvvvz --timeout=999 -e "ssh stefaanlh@ip-pc-B ssh"
$PC_TARGET:$FOLDER_TARGET/ $FOLDER_SOURCE
echo Done
#
___________________________________...
2002 May 13
4
Help please... rsync 2.5.5 on Solaris 2.7
Hi all, I have just re-joined the list. I have been using Rsync on my
Linux servers for a number of years now without fault. I now have the
need to Rsync data between two Solaris 2.7 servers.
This has got me stumped... Hoping that someone might have a quick answer
for me?
bash-2.03$ rsync -auvvvz sydney:/sun /sun
opening connection using remsh sydney
rsync --server --sender -vvvulogDtprz . /sun
bash: rsync: command not found
rsync: connection unexpectedly closed (0 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(150)
_exit_cleanup(code=12, file=io.c, li...