search for: folder_source

Displaying 1 result from an estimated 1 matches for "folder_source".

2005 Oct 11
1
Rsync hangs after a while when tunneling from A->B->C
...but we have a port open on a linux-machine B to access C from A (and vica versa) via B. When I now run my Rsync scripts in cygwin: # _______________________________________________________________________________ #!/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:$FOLDE...