I am using RSync to copy tar balls to an external hard drive on a Windows XP machine.
My files are tar.gz files (perms 600) in a directory (perms 711).
However, when I do a dry-run, only the folders are returned, the files are ignored.
- I use RSync a lot, so I presume there is no issue with my installation.
- I have tried changing permissions of the files but this makes no difference
- The owner of the files is root, which is also the user which the script logs in as
- I am not using Rsync's CVS option
The command I am using is:
rsync^
-azvr^
--stats^
--progress^
-e 'ssh -p 222' root@servername:/home/directory/ ./
Is there something I am missing to get my files copied over?