Hiroyuki Nakamura
2004-Mar-13 11:07 UTC
rsync with --verbose some times lists duplicated file name
Hi It's a very small problem. rsync with --verbose some times lists duplicated file name. Following is example. The duplicated file was not broken, and it is just an output problem. Have you ever seen duplicate file name like this? ------------------------------------------------------------------------ --- receiving file list ... done ./ usr/lib/X11/ usr/lib/X11/app-defaults/ usr/users/ usr/users/data/file1/ usr/users/fixh_lib/ usr/users/fixh_lib/ews/ usr/users/fixh_lib/ews/exec/ Mwm usr/lib/X11/app-defaults/BAR2 usr/lib/X11/app-defaults/W4120 usr/users/fixh_lib/ews/exec/amk.exe usr/users/fixh_lib/ews/exec/amk2.exe usr/users/fixh_lib/ews/exec/anlpo1.exe usr/users/fixh_lib/ews/exec/anlpo2.exe usr/users/fixh_lib/ews/exec/anlpom.exe <---- duplicate ! usr/users/fixh_lib/ews/exec/anlrat.exe usr/users/fixh_lib/ews/exec/aoi.exe usr/users/fixh_lib/ews/exec/apl.exe usr/users/fixh_lib/ews/exec/apr.exe usr/users/fixh_lib/ews/exec/avl.exe usr/users/fixh_lib/ews/exec/bar.exe usr/users/fixh_lib/ews/exec/anlpom.exe <---- duplicate ! wrote 1814310 bytes read 112004438 bytes 338242.94 bytes/sec total size is 220391602 speedup is 1.94 ------------------------------------------------------------------------ --- /Hiroyuki Nakamura
Wayne Davison
2004-Mar-13 19:49 UTC
rsync with --verbose some times lists duplicated file name
On Sat, Mar 13, 2004 at 08:02:45PM +0900, Hiroyuki Nakamura wrote:> rsync with --verbose some times lists duplicated file name.I assume it's because the file had to be resent. This can happen if the resulting file on the receiving side didn't generate the right checksum the first time it was sent. Rsync adjusts the block size (to work around any erroneous block-checksum matches that might have affected the first transfer) and tries the transfer again. ..wayne..