Each time I run rsync it copies the same files even though I haven't made any changes. I doesn't copy all the files each time, just the same ones each time I run the command. I run rsync with the following command: rsync --verbose --stats --recursive user@host::directory directory The local system is Suse linux 9 and the remote system is Windows 2000 server. I have the same results running rsync on the linux box and mapping the Windows box with Samba. Anyone have any ideas? Concerned about your privacy? Follow this link to get FREE encrypted email: https://www.hushmail.com/?l=2 Free, ultra-private instant messaging with Hush Messenger https://www.hushmail.com/services.php?subloc=messenger&l=434 Promote security and make money with the Hushmail Affiliate Program: https://www.hushmail.com/about.php?subloc=affiliate&l=427
It's a windows timestamp inaccuracy issue - check the manpages for info on timestamp windows as a workaround. -J> Each time I run rsync it copies the same files even though I haven't > made any changes. I doesn't copy all the files each time, just the same > ones each time I run the command. I run rsync with the following command: > rsync --verbose --stats --recursive user@host::directory directory > The local system is Suse linux 9 and the remote system is Windows 2000 > server. I have the same results running rsync on the linux box and mapping > the Windows box with Samba. > Anyone have any ideas? > > > > Concerned about your privacy? Follow this link to get > FREE encrypted email: https://www.hushmail.com/?l=2 > > Free, ultra-private instant messaging with Hush Messenger > https://www.hushmail.com/services.php?subloc=messenger&l=434 > > Promote security and make money with the Hushmail Affiliate Program: > https://www.hushmail.com/about.php?subloc=affiliate&l=427
On Sat, Mar 06, 2004 at 01:02:36PM -0800, civi1ian@hushmail.com wrote:> Each time I run rsync it copies the same files even though I haven't > made any changes. [...] I run rsync with the following command: > rsync --verbose --stats --recursive user@host::directory directoryYou didn't specify -t or (the much slower) -c, so rsync has no way to know which files are the same. ..wayne..