DREBS alternatives and similar tools
Based on the "Backups" category.
Alternatively, view DREBS 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 -
gutbackup
[Bash] The simplest rsync wrapper for backup and restore Linux system. Support ArchLinux, Ubuntu, etc -
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 DREBS or a related project?
Popular Comparisons
README
DREBS (Disaster Recovery for Elastic Block Store)
About
- DREBS is a tool for taking periodic snapshots of EBS volumes.
- DREBS is designed to be run on the EC2 host which the EBS volumes to be snapshoted are attached.
- DREBS supports configurable retention strategies.
- DREBS supports configurable pre and post snapshot tasks such as dumping databases prior to snapshot for consistency.
Installation & Setup
- Clone the repo or install the gem
- Output the example configuration to a file: drebs check_config example_config > your_config.yml
- Create an AWS account with authorization limited to create, list, & delete snapshots (Example coming soon)
- Add AWS API keys for above account to your_config.yml
- configure your_config.yml per your backup requirements
- test your configuration: drebs check_config your_config.yml && drebs check_cloud your_config.yml
- Add Crontab entry: 0 * * * * drebs execute your_config.yml
Todo
- Improve test coverage
- Use Whenever gem for crontab setup
- Arbitrary execution intervals (Snapshots every 5 minutes instead of every hour)
- AWS API keys and other config values from Instance Data: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html
- Add example AWS user access configuration
Testing notes
shell command: If you do:
drebs shell some_config
you will end up at a shell with@drebs
defined and you will be able to access@drebs.db
,@drebs.config
, &@drebs.cloud
. If you set@drebs.cloud
to be an instance of TestCloud from the test suite you should be able to execute various functions without actually hitting AWS and so work from your dev box.Due to the nature of drebs being designed to be run from an ec2 you will need to be on your ec2 instance to test many of the AWS interactions.
You should be able to verify data on a snapshot by creating an ebs volume from the snapshot, attaching the volume to your instance and then mounting its file system on some mount point - aws docs on using volumes
Copyright 2014 [dojo4](www.dojo4.com)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*Note that all licence references and agreements mentioned in the DREBS README section above
are relevant to that project's source code only.