On 1/2/07, tony.chamberlain at lemko.com <tony.chamberlain at lemko.com> wrote: > cp -r source dest That command doesn't copy modification times, so files in dest get newer modification times than files in src, so rsync is right to not make hard links. Try "cp -a source dest" instead. Matt