The backup is a zip file with all the .json of activities and .xml with the configurations as well as any .fit, .gpx etc tha you may have. Just unzip it to their default location and open again GC.
P.
On Sep 14, Wink Saville wrote:
>I've looked and don't see any instructions on how to restore from a backup.
>I'm using Arch Linux which I installed using [1]golden-cheetah-git from AUR.
>
>git describe says:
>
>$ git describe
>v3.5-DEV1708-27-gb4d35c7d
>
>-- Wink
>
>--
>_______________________________________________
>Golden-Cheetah-Users mailing list
>golden-che...@googlegroups.com
>[2]http://groups.google.com/group/golden-cheetah-users?hl=en
>---
>You received this message because you are subscribed to the Google Groups
>"golden-cheetah-users" group.
>To unsubscribe from this group and stop receiving emails from it, send an email
>For more options, visit [4]https://groups.google.com/d/optout.
>
>References:
>
>[1] https://aur.archlinux.org/packages/golden-cheetah-git/
>[2] http://groups.google.com/group/golden-cheetah-users?hl=en
Thanks, it would be nice if that was documented.
### How do I restore an athlete's backed up ride data?The folder/directory where the auto backed up files are found is in "Auto Backup Folder" which is in Menu "Tools -> Options... -> Athlete -> Backup". An example file is GC_3933_John_Smith_2017_09_12_15_57_07.zip which, as you can see is a compressed `.zip` file. To restore you'll unzip/extract this file into an athlete's directory, see [Where is ride data stored](#where-is-ride-data-stored).1) Locate or create the AthletesDirectory, if it already exists you may want to delete the current files. In linux you could do the following in a default configuration:```$ mkdir -p ~/.goldencheetah/John_Smith```2) Get the `.zip` file such as, `GC_3933_John_Smith_2017_09_12_15_57_07.zip`, from the original computer to the new computer via email, dropbox, usbdrive, etc. and save it in a directory such as `~/Downloads`3) unzip/extract it into the directory previously created. On Linux you'll need to change the permissions so the files are accessible using chmod:```$ cd ~/.goldencheetah/John_Smith$ unzip ~/Downloads/GC_3933_John_Smith_2017_09_12_15_57_07.zip
$ sudo chmod -R 0755 .```4) Now start GoldenCheetah.```$ GoldenCheetah```
5) Select the "new" athlete just added if it's not the current athlete in Menu "Athlete -> Open Window -> John_Smith".6) Navigate to menu "Tools -> Options... -> Athlete -> Backup" and change "Auto Backup Folder" to an appropriate value either by typing in the text entry box or using the "Browse" button on the right.```