How To Install backup-manager on CentOS 7

In this tutorial we learn how to install backup-manager on CentOS 7. backup-manager is A command line backup tool for GNU/Linux

Introduction

In this tutorial we learn how to install backup-manager on CentOS 7.

What is backup-manager

Backup Manager is a command line backup tool for GNU/Linux, designed to help you make daily archives of your file system. Written in bash and Perl, it can make archives in lots of open formats (tar, gzip, bzip2, lzma, dar, zip) and provides lots of interesting features (such as network exports or CD/DVD automated-burning). The program is designed to be as easy to use as possible and is popular with desktop users and sysadmins. The whole backup process is defined in one full-documented configuration file which needs no more than 5 minutes to tune for your needs.

We can use yum or dnf to install backup-manager on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install backup-manager.

Install backup-manager on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install backup-manager using yum by running the following command:

sudo yum -y install backup-manager

Install backup-manager on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install backup-manager using dnf by running the following command:

sudo dnf -y install backup-manager

How To Uninstall backup-manager on CentOS 7

To uninstall only the backup-manager package we can use the following command:

sudo dnf remove backup-manager

References

Summary

In this tutorial we learn how to install backup-manager on CentOS 7 using yum and dnf.