I want to use a removeable local SATA hard drive as backup using rsync. I want to be able to:
I have tried ntfs, but it knows nothing about Unix attributes and all files are owned by root/wheel
Assuming this is possible, what format should I use?
- Preserve user, group, archive, etc. in case I need to recover files and also use this information for backup verification
- Later be able to mount and read this disk from a Windows computer (ignoring the Unix attributes above)
rsync --partial --human-readable --verbose --archive --out-format="%n" --no-compress --stats --checksum --owner --group --progress [SOURCE] [DESTINATION]
I have tried ntfs, but it knows nothing about Unix attributes and all files are owned by root/wheel
Assuming this is possible, what format should I use?