workaround: Backup only creates folders, no files

Hi,
after being supported for the recent BUG about the kernel version, I created a backup job, to mirror-backup my NAS folder "hanna" to a remote disk, mounted as a remote-share from the backup menu, which appeared like this:
I found that the log was signaling errors in setting the permissions with chmod:
I checked the rsync syntax and I tried to change the -HltDvpogr param omitting the "pog" flags, which are supposed to preserve file permissions, owner and group.
Since the files are essentially just files to be accessed from Windows, I can avoid having strict permission checks.
I'm interested only in the share permission, being my NWSP2 just a home NAS for personal use.
Using -HltDvr instead of -HltDvpogr worked for me.
Question: is this ok or is it a sympthom of something wrong with the remote shared disk? Am I right doing what I did?
Thanks a lot,
MDI
after being supported for the recent BUG about the kernel version, I created a backup job, to mirror-backup my NAS folder "hanna" to a remote disk, mounted as a remote-share from the backup menu, which appeared like this:
- Code: Select all
sudo /usr/sbin/rsync --stats --force --modify-window=2 -HltDvpogr --de
lete '/share/1000/hanna/' '/share/1000/192.168.0.1-smb-nasusb/NAS Backup/hanna'
>> '/share/1000/cronjobs/hanna.log' 2>&1
I found that the log was signaling errors in setting the permissions with chmod:
- Code: Select all
rsync: chown "/share/1000/192.168.0.1-smb-nasusb/<my directory here>" failed: Permission denied (13)
I checked the rsync syntax and I tried to change the -HltDvpogr param omitting the "pog" flags, which are supposed to preserve file permissions, owner and group.
Since the files are essentially just files to be accessed from Windows, I can avoid having strict permission checks.
I'm interested only in the share permission, being my NWSP2 just a home NAS for personal use.
Using -HltDvr instead of -HltDvpogr worked for me.
Question: is this ok or is it a sympthom of something wrong with the remote shared disk? Am I right doing what I did?
Thanks a lot,
MDI