Quote:
Originally Posted by sternfan I did an rysnc -avr; how is that different than a rsync -avHK? I googled for it and can't find any info. |
I'm under the impression that smbfs doesn't handle links very well, there's an excellent chance that's where you're backup is going awry. NFS would handle them better.
As for the difference between the above commands, here's some info from the rsync manpage:
-a, --archive archive mode; same as -rlptgoD (no -H)
-K, --keep-dirlinks treat symlinked dir on receiver as dir
-H, --hard-links preserve hard links
So the "r" you were using is actually redundant with the "a" option. Meaning the only difference between the two commands is the "K" and "H", which describe how to handle links.
But, if the problem is smbfs's link support, that won't help in this case :-)
What you might consider looking into is if you could try using CIFS rather than SMBFS. There is a kernel module for CIFS, you'd just want to use it over the SMBFS module.
I'm not sure if that entails any additional software installs, but poking around on google for your distro and cifs should probably help.
Good luck!
-Eric