Displaying 4 results from an estimated 4 matches for "dstlt".
Did you mean:
dstat
2017 Apr 05
2
[Bug 12732] hard links can cause rsync to block or to silently skip files
...enerated by bugzilla 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 A...
2017 Apr 05
0
[Bug 12732] hard links can cause rsync to block or to silently skip files
...ve it is 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 Heisen...
2017 Apr 04
5
[Bug 12732] New: hard links can cause rsync to block or to silently skip files
...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
#####
sending incremental file list
delta-transmission disabled for local transfer or -...
2015 Apr 24
0
Hard links: incomplete backup or rsync does not terminate
...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-dest=$PWD/dstlt2/. $PWD/srclt2/. $PWD/baklt2/. >> testlt2.log 2>&1
The log (after SIGINT) is:
> sending incremental file list
> delta-transmission disabled for local transfer or -...