Automate data backup at the command line
bup
The bup (short for backup) program has been in development and maintained for seven years, and it has established itself in small IT environments owing to its speed and efficiency [2]. The software is available from the repositories for immediate installation on many major Linux distributions.
Bup already differs from other backup tools in that it uses the Git packfile format instead of traditional TAR or ZIP archives. The software is very flexible in terms of handling: For example, bup archives can be mounted as filesystems in user space. Even backing up entire ISO images, which often contain several gigabytes of data, is no problem for the software. However, using the Git packfile format does require setting up a repository first.
For an overview of the software's numerous command parameters, call the program at the prompt without any options. Bup then lists the most important parameters in short form. You can also find detailed documentation on the project site [3]. For local backups on the desktop, the program has Gtk3 and Qt-based graphical front ends, which makes the backup process easier for inexperienced users. These are available from the bup homepage.
Usage
To create a backup, you first need to initialize the backup directory using the command sequence:
BUP_DIR=/<Backup-Set> bup init
Next, index the directory to be backed up with the command:
bup index -ux /<Directory>
If no corresponding directory variable is defined, the -d
parameter must also be specified with the path for the backup set. Otherwise, bup saves the backup set in the hidden .bup
subfolder in your home directory. After indexing, perform the backup with:
bup save -n <Set-Name> /<Original-Directory>
In the event of missing directory variables, the path to the backup set must also be specified with a prefixed -d
parameter. The set name can be optionally defined and is used to identify the correct set for recovery if several backups exist on the same target media.
During the first backup run, bup creates a full backup, which can take some time depending on the original data volume. The runs that follow only create incremental backups, which is much faster.
Keep in mind that before an additional backup run you have to re-index after each change to the original content for the software to detect changes.
If you want to store the backup on a remote server, in the simplest of cases, you would enter the following command sequence:
bup save -r <Username>@<Server-IP> <Directory-Name> -n <Set-Name>/<Original-Directory>
In this case, a full backup is run for the first pass, and the subsequent backups are incremental (Figure 3).
Bup also supports backing up a remote machine to a local machine. To do this, enter the bup on
command followed by the server address and the target directory on the local system. Also, an indexing run must be performed beforehand.
To verify existing backup sets, use the bup ls
command to list the individual files. The columns give you a clear overview (Figure 4).
Reverse Gear
Restoring backups is just as easy for users: After specifying the backup set path, use the restore
parameter instead of save
, followed by the set name and the path specification. Another option here is to restore individual subdirectories from the set.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe 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
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.