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
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.
-
Plasma Desktop Will Soon Ask for Donations
The next iteration of Plasma has reached the soft feature freeze for the 6.2 version and includes a feature that could be divisive.
-
Linux Market Share Hits New High
For the first time, the Linux market share has reached a new high for desktops, and the trend looks like it will continue.
-
LibreOffice 24.8 Delivers New Features
LibreOffice is often considered the de facto standard office suite for the Linux operating system.
-
Deepin 23 Offers Wayland Support and New AI Tool
Deepin has been considered one of the most beautiful desktop operating systems for a long time and the arrival of version 23 has bolstered that reputation.
-
CachyOS Adds Support for System76's COSMIC Desktop
The August 2024 release of CachyOS includes support for the COSMIC desktop as well as some important bits for video.
-
Linux Foundation Adopts OMI to Foster Ethical LLMs
The Open Model Initiative hopes to create community LLMs that rival proprietary models but avoid restrictive licensing that limits usage.
-
Ubuntu 24.10 to Include the Latest Linux Kernel
Ubuntu users have grown accustomed to their favorite distribution shipping with a kernel that's not quite as up-to-date as other distros but that changes with 24.10.
-
Plasma Desktop 6.1.4 Release Includes Improvements and Bug Fixes
The latest release from the KDE team improves the KWin window and composite managers and plenty of fixes.
-
Manjaro Team Tests Immutable Version of its Arch-Based Distribution
If you're a fan of immutable operating systems, you'll be thrilled to know that the Manjaro team is working on an immutable spin that is now available for testing.