I am trying to setup rsync to do backups of my file server's critical data to a windows machine's USB drive. I'm having problems with file permissions and can't seem to figure it out.
When I run this command:
The files are copied like I want them to be, but I can't access any of them from the windows machine without having to take ownership and change permissions on each file.
I also tried:
But that resulted in the same thing. How can I make the files copied from the freenas box to the windows box be readable by everyone? It keeps showing the owner as system, and the windows box doesn't recognize this.
When I run this command:
Code:
rsync -avzr /mnt/cargo/globemaster vdc01::Backup
The files are copied like I want them to be, but I can't access any of them from the windows machine without having to take ownership and change permissions on each file.
I also tried:
Code:
rsync -avzr --chmod=a=rw,Da+x /mnt/cargo/globemaster vdc01::Backup
But that resulted in the same thing. How can I make the files copied from the freenas box to the windows box be readable by everyone? It keeps showing the owner as system, and the windows box doesn't recognize this.