You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
question: why are two consequent runs of rsync -a --only-write-batch=patch /src/ /dst/ producing two different patch files (when src and dst are read-only)
#467
This discussion was converted from issue #467 on April 08, 2023 00:42.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am using rsync to generate the 'diff' between to subtrees ( dvd loopback read-only mounts )
mount -o loop dvd1.iso mnt1
mount -o loop dvd2.iso mnt2
'rsync -a --only-write-batch=diff1 ./mnt1/ ./mnt2/'
running a second time the same command (mnt1 and mn2 are read-only and did not change)
'rsync -a --only-write-batch=diff2 ./mnt1 ./mnt2/'
... diffing the two diff1 and diff2 files shows byte 11, line 1 to differ
is this a serial number ? a timestamp ? where in the code is this byte 11 being written to the archive ?
Beta Was this translation helpful? Give feedback.
All reactions