You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi was using the permanent data backup mechanism to backup stuff from my gokrazy to my NAS.
However I verified that when I performed the command rsync -av --delete -e ssh rsync://waiw-backup/waiw /mnt/external/gokrazy_backup/waiw_backup I got an exit status of 23 saying permission denied.
I found that since I was using the flag --delete the destination folder has to have rwx perms so to fix this I used rsync -av --delete --chmod=ugo=rwx -e ssh rsync://waiw-backup/waiw /mnt/external/gokrazy_backup/waiw_backup
I was wondering if this was a good thing to add to the docs in gokrazy!
The text was updated successfully, but these errors were encountered:
Hi was using the permanent data backup mechanism to backup stuff from my gokrazy to my NAS.
However I verified that when I performed the command
rsync -av --delete -e ssh rsync://waiw-backup/waiw /mnt/external/gokrazy_backup/waiw_backup
I got an exit status of23
sayingpermission denied
.I found that since I was using the flag
--delete
the destination folder has to haverwx
perms so to fix this I usedrsync -av --delete --chmod=ugo=rwx -e ssh rsync://waiw-backup/waiw /mnt/external/gokrazy_backup/waiw_backup
I was wondering if this was a good thing to add to the docs in gokrazy!
The text was updated successfully, but these errors were encountered: