Displaying 4 results from an estimated 4 matches for "rsyncsource".
Did you mean:
syncsource
2005 Jun 09
0
[Bug 2784] New: rsync gives following error: buffer overflow in receive_file_entry
...signedTo: wayned@samba.org
ReportedBy: carnesresearchcenter@gmail.com
QAContact: rsync-qa@samba.org
If I execute the following command:
rsync -vrptgz --rsh="ssh $BCPSERVER rsync rsyncd --daemon --
config=$RSYNCDCONFIGFILE --port=$RSYNCDPORT" --rsync-path=$RSYNCPATH
$RSYNCSOURCE $LOGNAME@$BCPSERVER::$RSYNCDESTINATIONMODULE
and I have a symbolic link in the directory represented by $RSYNCSOURCE then I
get the following output:
building file list ...
5 files to consider
overflow: linkname_len=1862797370
ERROR: buffer overflow in receive_file_entry
rsync error: error allo...
2005 Jun 09
0
[Bug 2785] New: rsync gives following error: buffer overflow in receive_file_entry
...signedTo: wayned@samba.org
ReportedBy: carnesresearchcenter@gmail.com
QAContact: rsync-qa@samba.org
If I execute the following command:
rsync -vrptgz --rsh="ssh $BCPSERVER rsync rsyncd --daemon --
config=$RSYNCDCONFIGFILE --port=$RSYNCDPORT" --rsync-path=$RSYNCPATH
$RSYNCSOURCE $LOGNAME@$BCPSERVER::$RSYNCDESTINATIONMODULE
and I have a symbolic link in the directory represented by $RSYNCSOURCE then I
get the following output:
building file list ...
5 files to consider
overflow: linkname_len=1862797370
ERROR: buffer overflow in receive_file_entry
rsync error: error allo...
2005 Jan 18
1
Rsync Minimalist: --include only does "add_exclude"
Why does this not include? I have tried many variations including
adding an exclude command.
Includes.txt:
+ //aBackup/*
+ //apic/*
- /*
rsync --verbose --progress --stats -vv --recursive -e "ssh -p 2423"
--include-from=includes.txt rsynchost:
add_exclude(+ //aBackup/*.*)
add_exclude(+ //apic/*)
add_exclude(- /*)
user@rsynchost's password:
receiving file list ... add_exclude(+
DO NOT REPLY [Bug 4220] New: --backup causes "stat" failed message when trying to delete a directory
2006 Nov 12
2
DO NOT REPLY [Bug 4220] New: --backup causes "stat" failed message when trying to delete a directory
...I am manually running rsync (i.e. not using the script as it is presented) so
that I can experiment with its functionaility before putting it in place. The
command I am using is:
rsync -av --force --ignore-errors --delete --backup
--backup-dir=/Users/eric/Desktop/rsyncBackup1 /Users/eric/Desktop/rsyncSource/
/Users/eric/Desktop/rsyncDest/
When the source directory (/Users/eric/Desktop/rsyncSource/) contains the
following:
testfile1.txt
testfolder
testfile2.txt
The first time I run the command, it syncs correctly to
/Users/eric/Desktop/rsyncDest/, as expected.
Now, if I delete all the files...