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
-
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.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.