Hassle-free Backup with Déjà Dup
Productivity Sauce
The Déjà Dup backup utility may not be the most powerful or flexible backup tool out there, but it does have its advantages. Its straightforward interface makes it dead-easy to configure backups, while the support for the Amazon S3 storage back-end is a boon for users looking for unlimited backup storage on the cheap. In addition to that, Déjà Dup supports incremental backups, and it can encrypt and compress data during the backup operation. Besides Amazon S3, Déjà Dup supports other types of remote storage, including FTP, Windows shares, WebDAV, and SSH. And you can use Déjà Dup to perform scheduled backups.
To install Déjà Dup on Ubuntu, you have to add the project's repository first using the following command:
sudo apt-add-repository ppa:deja-dup-team/ppa
Use then the commands below to install Déjà Dup on your machine:
sudo apt-get update sudo apt-get install deja-dup
Once Déjà Dup has been installed, launch it by choosing Applications | System Tools | Déjà Dup Backup Tool. Hit the Backup button to open a wizard which helps you to configure the backup.
Most of the options in the wizard are self-explanatory, so you shouldn't have problems configuring the backup settings (you can edit them later by choosing Edit | Preferences). Once you've configured the backup settings, you can start using Déjà Dup. Since there are only two buttons -- Backup and Restore -- using Déjà Dup is as easy as it gets. Better yet, if you enabled the scheduled backup option, the utility will perform the backup operation automatically.
Comments
comments powered by DisqusSubscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
Missing capability
easy backup script
yes it works on windows if you install cygwin and install rsync, too.
#!/bin/bash
backup=/media/backup/ # change this to reflect your backup drive.
home=/home/neal/ # change this to reflect your home directory.
if [ -d "$backup" ]
then
/usr/bin/rsync -vaxE --delete --ignore-errors "$home" "$backup"
else
echo "Mount backup drive!"
fi
# end script
Read man rsync to find out what those flags do. Basically, it copies the files and permissions, skips files that have not changed and deletes files that no longer exist in your home directory and continues if there are errors. If you need to retrieve something, mount the drive and find the file you need and copy it back.
Deja-dup looks nice, but what if ... ?
Will you lose the password, and therefore all of the encrypted backups elsewhere ?
Making backups of your own home directory onto some other media seems still needed for this.
Cutting Out Other Distributions
I guess the developers may welcome some help from someone who may offer to package for other systems.
Cutting Out Other Distributions
Fedora 13 and deja-dup
Looks good so far
It is a bit disheartening, though, when good projects limit themselves to only Ubuntu packages. There are as many desktop systems based on rpm out there as their are Ubuntu and tremendously more servers. This isn't a "distro war flame" thing as I am distro/package agnostic, myself. It is simply an issue of common sense. Why cut out 50% or more of your potential market? If I were able I'd take a shot at making a spec file for this. I might still try, though my spec skills are woefully inadequate, I fear.
Joe