How do I create a permanent snapshot of a Time Machine backup

Solution 1:

I've decided to use rsync to create an archive copy. This website also mentions hard links so I believe a rsync archive will be fine.

I'm using this command:

rsync -vahW [source] [target]

This SO mentions -W is best to speed up local network copies, plus I'm doing a new copy so no need for diffing.