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 DisqusIssue 269/2023
Buy this issue as a PDF
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
Kubuntu Focus Announces XE Gen 2 Linux Laptop
Another Kubuntu-based laptop has arrived to be your next ultra-portable powerhouse with a Linux heart.
-
MNT Seeks Financial Backing for New Seven-Inch Linux Laptop
MNT Pocket Reform is a tiny laptop that is modular, upgradable, recyclable, reusable, and ships with Debian Linux.
-
Ubuntu Flatpak Remix Adds Flatpak Support Preinstalled
If you're looking for a version of Ubuntu that includes Flatpak support out of the box, there's one clear option.
-
Gnome 44 Release Candidate Now Available
The Gnome 44 release candidate has officially arrived and adds a few changes into the mix.
-
Flathub Vying to Become the Standard Linux App Store
If the Flathub team has any say in the matter, their product will become the default tool for installing Linux apps in 2023.
-
Debian 12 to Ship with KDE Plasma 5.27
The Debian development team has shifted to the latest version of KDE for their testing branch.
-
Planet Computers Launches ARM-based Linux Desktop PCs
The firm that originally released a line of mobile keyboards has taken a different direction and has developed a new line of out-of-the-box mini Linux desktop computers.
-
Ubuntu No Longer Shipping with Flatpak
In a move that probably won’t come as a shock to many, Ubuntu and all of its official spins will no longer ship with Flatpak installed.
-
openSUSE Leap 15.5 Beta Now Available
The final version of the Leap 15 series of openSUSE is available for beta testing and offers only new software versions.
-
Linux Kernel 6.2 Released with New Hardware Support
Find out what's new in the most recent release from Linus Torvalds and the Linux kernel team.
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