Skip to content

theoneandonly-vector/raspiBackup

 
 

Repository files navigation

raspiBackup - Backup and restore your running Raspberries

  • Unattended full or incremental system backup with no shutdown of the system.
  • No manual intervention required. Backups are created via cron over night.
  • Important services can be stopped before starting the backup and will be restarted when the backup finished.
  • Number of backup versions to keep is configurable.
  • Smart recycle backup strategy available (e.g. save backups of last 7 days, last 4 weeks, last 12 months and last n years) - also known as grandfather, father and son backup rotation principle.
  • Restore any of the created backup versions and the system will boot up again successfully.
  • Migrate a SD card backup image to an USB device during restore.
  • Standard Linux backup tools dd, tar and rsync are available to create a backup.
  • dd and tar are full backups. rsync uses hardlinks for incremental backups.
  • dd backups can be restored with Windows tools.
  • Menu driven installer installs and configures raspiBackup with all major options to get raspiBackup up and running in 5 minutes. Much more configuration options can be configured in a configuration file.
  • Any device mountable on Linux can be used as backup space (local USB disk, remote nfs drive, remote samba share, remote ssh server using sshfs, remote ftp server using curlftpfs, webdav drive using davfs, ...).
  • Messages and completion status of backup run can be send in an eMail or to Telegram.
  • Extensionpoints allow to execute any additional logic at various steps in the backup and restore process.
  • National language support:
    • English (Default)
    • German
    • Finnish
    • Chinese
    • French
  • Automated regressiontests make sure a new release will backup and restore successfully.
  • Extensive logging allows to isolate backup/restore issues.
  • Much more features (see below).

Note

raspiBackup is supported only for RaspberryOS as operating system and Raspberry hardware. raspiBackup runs also successfully on other Raspberry compatible hardware and other Linux distros but any support request on these unsupported environments will be rejected. Just try it and be happy if it works but don't ask for any support.

Documentation

English

German

French

This README was translated into French. Credits to mgrafr for his translation work.

Installer

The installer uses menus, checklists and radiolists similar to raspi-config and helps to install and configure major options of raspiBackup and in 5 minutes the first backup can be created.

Screenshot1 Screenshot2 Screenshot3

Installer demo

Demo

Installation of raspiBackup will started with following command:

curl -s https://raw.githubusercontent.com/framps/raspiBackup/master/installation/install.sh | sudo bash

Donations

raspiBackup is maintained just by me - framp. If you find raspiBackup useful please donate to support future development and acknowledge support. For details how to donate see here

Feature requests

Anybody is welcome to create feature requests in github. They are either immediately scheduled for the next release or moved into the backog. The backlog will be reviewed every time a new release is planned and some issues are picked up and will be implemented in the next release. If you find some features useful just add a comment to the issue with 👍. This helps to prioritize the issues in the backlog.

Much more detailed documentation

Social media

  • Youtube - Videos in English and German
  • Twitter - News and announcements - English only
  • Facebook - News, discussions, announcements and misc background information in English and German

Miscellaneous sample scripts (Code)

  • Sample wrapper scripts to add any activities before and after backup (Code)

  • Sample wrapper script which checks whether a nfsserver is online, mounts one exported directory and invokes raspiBackup. If the nfsserver is not online no backup is started. (Code)

  • Sample script which restores an existing tar or rsync backup created by raspiBackup into an image file and then shrinks the image with pishrink. Result is the smallest possible dd image backup. When this image is restored via dd or windisk32imager it's expanding the root partition to the maximum possible size. (Code)

  • Convenient helper script to restore a backup. (Code)

Sample extensions

There exist sample extesions for raspiBackup which report for example memory usage, CPU temperature, disk usage and more. There exist also user provided extensions.

Systemd

Instead of cron systemd can be used to start raspiBackup. See here (thx Hofei) for details.

REST API Server proof of concept

Allows to start raspiBackup from a remote system or any web UI.

  1. Download executable from RESTAPI directory
  2. Create a file /usr/local/etc/raspiBackup.auth and define access credentials for the API. For every user create a line userid:password
  3. Set file attributes for /usr/local/etc/raspiBackup.auth to 600
  4. Start the RESTAPI with sudo raspiBackupRESTAPIListener. Option -a can be used to define another listening port than :8080.
  5. Use curl -u userid:password -H "Content-Type: application/json" -X POST -d '{"target":"/backup","type":"tar", "keep": 3}' http://<raspiHost>:8080/v0.1/backup to kick off a backup.

About

Backup and restore your running Raspberry

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 96.7%
  • Go 2.4%
  • Other 0.9%