Hello, Why if I do in my home directory: rsync -av --link-dest=sources/ sources/ backup.0/ that's don't make hardlinks, but copy. rsync -av --link-dest=/home/maxim/sources/ /home/maxim/sources/ /home/maxim/backup.0/ is work properly and I get hardlinks. I'm use Debian 3.1 and rsync version 2.6.4 protocol version 29. Thanks, Maxim.
On Sat, Jul 23, 2005 at 12:01:45AM +0200, Maxim Kudelya wrote:> rsync -av --link-dest=sources/ sources/ backup.0/ > that's don't make hardlinks, but copy.Because, as the documentation states, --list-dest is relative to the destination, so it's looking in backup.0/sources for potential files. Try using --link-dest=../sources or even --link-dest=$PWD/sources. ..wayne..