search for: srclt

Displaying 4 results from an estimated 4 matches for "srclt".

Did you mean: srclg
2017 Apr 05
2
[Bug 12732] hard links can cause rsync to block or to silently skip files
...ugzilla are split into two lines (each): Both rsync > commands should read > --- Actually, I am reproducing your bug exactly as you entered it. And it is very sensitive to options. When I take out the $PWD it works. First your case: /tmp> rsync -aHvv --compare-dest=$PWD/dstlt/. $PWD/srclt/. $PWD/baklt/. |& tee testlt.log sending incremental file list delta-transmission disabled for local transfer or --whole-file ./ a is uptodate d is uptodate b a => b /tmp> ll -i srclt dstlt baklt baklt: total 8 17305770 -rw-rw-r-- 2 2 Apr 5 15:46 a 17305770 -rw-rw-r-- 2 2 Apr 5 15:46 b...
2017 Apr 05
0
[Bug 12732] hard links can cause rsync to block or to silently skip files
...relative to the target dir not the "$PWD". I like to always use absolute paths because of this. But essentially, the command with the instances of $PWD vs without them the paths aren't the same. If you want all relative to . paths it would be: rsync -aHvv --compare-dest=../dstlt/. srclt/. baklt/. Also, all these params that end with /. the . is kinda pointless despite being points ;) On 04/05/2017 07:19 PM, L A Walsh via rsync wrote: > just subscribed for rsync-qa from bugzilla via rsync wrote: >> Probably using different options? Can this be some sort of Heisenbug, &gt...
2017 Apr 04
5
[Bug 12732] New: hard links can cause rsync to block or to silently skip files
...most, but not all of these hangs occur when hard links are present. Therefore, I hope the latter case might give some hints to a larger problem that might be triggered by this hard link bug. How to reproduce (1) ==================== [ Using Linux on e.g. ext4 ] ############################ mkdir srclt cd srclt echo x > a ln a b echo x > c ln c d cd .. cp -aix srclt dstlt rm dstlt/{b,c} mkdir baklt rsync -aHvv --compare-dest=$PWD/dstlt/. $PWD/srclt/. $PWD/baklt/. >> testlt.log 2>&1 ############################ Actual Results (1) ================== cat testlt.log ##### sen...
2015 Apr 24
0
Hard links: incomplete backup or rsync does not terminate
...finally managed to create a small test case which reproduces this behaviour (another night without sleep, so sorry for the bad English...): Using rsync 3.1.0 [no change in a quick test I ran after compiling 3.1.1] on Linux (x86_64) the following sequence causes rsync not to terminate: > mkdir srclt2 > cd srclt2 > echo x > a > ln a b > cd .. > cp -aix srclt2 dstlt2 > rm dstlt2/b > mkdir baklt2 > rsync -cavvHAXSl --exclude=gvfs --exclude=.gvfs --compare-de...