samba-bugs at samba.org
2010-Sep-05 13:47 UTC
DO NOT REPLY [Bug 7664] New: --compare-dest hangs
https://bugzilla.samba.org/show_bug.cgi?id=7664 Summary: --compare-dest hangs Product: rsync Version: 3.0.7 Platform: Other OS/Version: Windows NT Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: francois at synways.com QAContact: rsync-qa at samba.org hi ! First of all congratulation for rsync, which I use as our main backup tool in our banking company (ACM). I am trying to also use rsync to deduplicate files. example: cd / cp -a /bin /bin3 rm -v /bin3/z* /bin3/bas* #now we will use rsync to build a folder with all files from /bin that are missing or different in /bin3, using --compare-dest rm -r /bin.tmp -r; rsync --recursive --links --group --owner --devices --numeric-ids --delete --delete-excluded --one-file-system --compare-dest="../bin3" --hard-links --perms --times --size-only "/bin/." "/bin.tmp" -vv --stats | less #this hangs! 1) on version 2.6.9 it worked more or less: missing files in bin3 were copied from bin to bin.tmp except 'zcat' because it was a hardlink to 'gunzip', which is not missing in bin3. on version 3.0.3 and 3.0.7 it just hangs 2) secondly and unfortunately, removing the --hard-links option is also making trouble in 3.0.3 and 3.0.7: it does not hang anymore but it sadly copy all symlinks, even those that are present in bin3. on 2.6.9, removing --hard-links option was working correctly and copying ONLY the missing symlinks. Thank you for your time. Francois Scheurer francois at ac-markets.com Head of Infratructure Advanced Currency Markets SA -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.
Reasonably Related Threads
- DO NOT REPLY [Bug 7663] New: --compare-dest hangs
- DO NOT REPLY [Bug 4961] New: rsync ignores --compare-dest flag?
- DO NOT REPLY [Bug 5647] New: A way to make earlier --compare-dest dirs hide later ones
- DO NOT REPLY [Bug 5074] New: Push to a daemon with --only-write-batch modifies dest and then hangs
- Binning a 2 column matrix by avarages of rows.