Hi tmac,
On 5/23/07, tmac tmacmd@gmail.com wrote:
Okay, I am trying to copy data from a DOT-7 to a DOT-GX.
...
I then do (from RHEL4U2):
cp -a /src/dir1 /gx
I then do:
rsyn -avH --delete /src/dir1/ /gx/dir1/
There is nothing changing on the source, yet it transfers files anyway.
Anyone have a clue as to why?
cp doesnt take all metadata. Try tar/cpio!
# cd /source # tar cf - * | ( cd /target ; tar xf - )