gutbackup alternatives and similar tools
Based on the "Backups" category.
Alternatively, view gutbackup alternatives based on common mentions on social networks and blogs.
-
Bup
Very efficient backup system based on the git packfile format, providing fast incremental saves and global deduplication (among and within files, including virtual machine images). Please post problems or patches to the mailing list for discussion (see the end of the README below). -
TimeShift
DISCONTINUED. System restore tool for Linux. Creates filesystem snapshots using rsync+hardlinks, or BTRFS snapshots. Supports scheduled snapshots, multiple backup levels, and exclude filters. Snapshots can be restored while system is running or from Live CD/USB. -
Rsnapshot
a tool for backing up your data using rsync (if you want to get help, use https://lists.sourceforge.net/lists/listinfo/rsnapshot-discuss) -
Back In Time
A comfortable and well-configurable graphical Frontend for incremental backups, with a command-line version also available. Modified files are transferred, while unchanged files are linked to the new folder using rsync's hard link feature, saving storage space. Restoring is straightforward via file manager, command line or Back In Time itself. -
Bareos
Bareos is a cross-network Open Source backup solution (licensed under AGPLv3) which preserves, archives, and recovers data from all major operating systems. -
Shield
A standalone system that can perform backup and restore functions for a wide variety of pluggable data systems -
rclone
a command line program to sync files and directories to and from several cloud storage systems/providers.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of gutbackup or a related project?
README
gutbackup, the simplest rsync wrapper for backup Linux system
Homepage | Documentation | Issue Tracker | MIT License | Bountysource | by Guten Ye
Install | |
---|---|
ArchLinux | $ pacaur -S gutbackup |
Manually | $ git clone [email protected]/gutenye/gutbackup.git |
Getting Started
Mount backup USB drive to /backup
$ mkdir -p /backup/conf/hello
$ vi /backup/conf/hello/default
backup_options="-aP"
files="
/etc/fstab
/etc/mtab
"
$ gutbackup backup hello -- --dry-run
> rsync --files-from /tmp/files.gutbackup -aP --dry-run / /backup/hello/
That's it, as you can see, it just build a rsync command using options from /backup/conf/hello/default
bash file.
Backup to another location
$ gutbackup backup hello -to /tmp/backup
> backup to /tmp/backup
> read conf from /tmp/backup/conf/hello/default
Backup to another location with another conf directory
$ gutbackup backup hello -to /tmp/backup -conf /etc/backup
> backup to /tmp/backup
> read conf from /etc/backup/hello/default
Configuration
You can provide options in four locations, later one override the previous. They are just plain bash files.
- system-wide:
/etc/gutbackup.conf
- local-wide:
$conf/<profile>.conf
- local-wide:
$conf/<profile>/<instance>
- cmdline
# edit /etc/gutbackup.conf
from="/"
to="/backup"
conf="$to/conf"
# edit /backup/conf/hello.conf
backup_options="-aP"
# edit /backup/conf/hello/default
files="/etc/fstab"
# edit /backup/conf/hello/data
files="/root"
# cmdline
$ gutbackup backup <profile> [instance] [options] -- [rsync-options]
$ gutbackup backup hello # if you omit the instance, it's "default".
$ gutbackup backup hello data -from / -to /backup -conf /backup/conf -- --dry-run
Read more at Archlinux Example, Tutorial, and Documentation
Schedule Backup
# sytemctl enable [email protected]
By default, it runs daily, you can change it by
# systemctl edit [email protected]
[Timer]
OnCalendar=weekly
Read more at $ man systemd.timer
I Also Use These Backup Apps
- x: encyption the backup and send it to cloud
- Syncthing: Relatime Backup
- Time Machine: For Mac OS
- Helium: For Android
- File History: For Windows
Copyright
The MIT License (MIT)
Copyright (c) 2013-2015 Guten Ye
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*Note that all licence references and agreements mentioned in the gutbackup README section above
are relevant to that project's source code only.