So one of my Raspberry Pis died. I think the USB hub was faulty causing power spikes that eventually fried the SD cards and Pi circuitry.
Luckily my workflow of working on the iPad meant the code was all still intact on Textastic. It did, however, make me implement a basic backup system. This goes something like this.
- Create a directory to backup – I chose a directory called MyCode in the Home directory.
- Stick all files and folders I want backed up in this backup directory (and work out of it).
- Log all installed programs – add the log to the backup directory.
- Compress all files in directory.
- Write a script to upload compressed file to Dropbox.
- Schedule the script to run daily at midnight.
In more detail, 3) involves running the script:
dpkg --get-selections > /home/[username]/MyCode/installedsoftware.log
4) involves:
tar -zcvf [archive-name].tar.gz [directory-path]
5) then involves following the directions found here: http://raspi.tv/2013/how-to-use-dropbox-with-raspberry-pi . The command to upload a directory is something like this:
bash /home/[username]/MyCode/Dropbox-Uploader/dropbox_uploader.sh upload /home/[username]/[backupname].tar.gz /backup
6) involves adding a CRON entry:
crontab -e
looking like this:
0 0 * * * bash [path to backup script]/backup.sh
It’s not pretty but it is better than nothing. If anyone else has a more elegant solution let me know.