I regulary backup a bunch of SD cards and other medias, which in this case are having FAT32 partitions, to PBS by mounting the media and doing a simple
to the appropriate repository. This is working great and blazing fast in contrary to cp or rsync.
But restoring the pxar to a FAT32 mounted media fails and exits right after the 1st file with
This is comprehensible as FAT lacks of typical permissions, ownerships, xattrs etc.pp. I bypass this circumstance by restoring to a tmpfs and moving the files to the mounted media, but this is contradictory in my eyes. What I'm missing here is a parameter like "ignore special permissions" or "ignore errors and continue".
Or is there another option that I may not be seeing right now?
Code:
proxmox-backup-client backup BACKUPNAME.pxar:MOUNTPATH --backup-id BACKUPNAME
But restoring the pxar to a FAT32 mounted media fails and exits right after the 1st file with
Code:
Error: error extracting archive - error at entry "FILENAME": failed to set ownership: Operation not permitted (os error 1)
Or is there another option that I may not be seeing right now?