0
I have some files (specifically music files) on a remote filesystem (ext3) that I'm connecting to via SSH. I issued this command to copy those files onto a local HFS+ partition:
rsync -r -v --progress user@server:mydir/ /media/hfs_volume/mydir/
After it's finished executing, you'd assume it's done, but if you re-execute it, some files are transfered again (the same files each time). I don't think it completely transfers the file, but just parts of it. I noticed that most of these files have special characters in them, like "é" or "ñ".
Also, I noticed that the size of the directory the receiving end is smaller that that on the server (using "du -sk"). Server: 49441852k; local: 49349516lk.
What is causing this problem? Is it on rsync's or HFS+'s end?
Thank you! The -t option did the trick. But I still wonder why, without the -t option, it was always the same few files to be transfered. – Theo – 2011-01-23T04:24:26.677