On Sun, Aug 30, 2015 at 01:17:00PM -0600, Chris Murphy wrote:
On Sun, Aug 30, 2015 at 1:01 PM, Gordon Messmer gordon.messmer@gmail.com wrote:
On 08/30/2015 10:30 AM, Chris Murphy wrote:
# rsync -rvnc --delete /brick0 /brick1
I've confirmed that separate devices are mounted to /brick0 and /brick1. What I'm seeing for ~ 20 minutes now is only the device mounted at brick0 is being accessed, and yet I'm seeing piles of files (verbose option) being listed.
Try: rsync -rvnc --delete /brick0/ /brick1/
So it was seeing them as 100% different because... shit.
Interesting, I do not understand this behaviour either. Anyone care to elaborate?
$ mkdir -p foo{1,2}/bar $ touch foo{1,2}/{bla,bar/baz} $ echo > foo1/bla $ dirdiff foo? # dirdiff is a wrapper around rsync -rvnc --delete sending incremental file list foo1/ foo1/bla foo1/bar/ foo1/bar/baz
sent 168 bytes received 30 bytes 396.00 bytes/sec total size is 1 speedup is 0.01 (DRY RUN) $ dirdiff foo?/ sending incremental file list bla
sent 150 bytes received 20 bytes 340.00 bytes/sec total size is 1 speedup is 0.01 (DRY RUN)