How To Install dump on CentOS 7

In this tutorial we learn how to install dump on CentOS 7. dump is Programs for backing up and restoring ext2/ext3 filesystems

Introduction

In this tutorial we learn how to install dump on CentOS 7.

What is dump

The dump package contains both dump and restore. Dump examines files in a filesystem, determines which ones need to be backed up, and copies those files to a specified disk, tape, or other storage medium. The restore command performs the inverse function of dump; it can restore a full backup of a filesystem. Subsequent incremental backups can then be layered on top of the full backup. Single files and directory subtrees may also be restored from full or partial backups. Install dump if you need a system for both backing up filesystems and restoring filesystems after backups. The dump package contains both dump and restore. Dump examines files in a filesystem, determines which ones need to be backed up, and copies those files to a specified disk, tape, or other storage medium. The restore command performs the inverse function of dump; it can restore a full backup of a filesystem. Subsequent incremental backups can then be layered on top of the full backup. Single files and directory subtrees may also be restored from full or partial backups. Install dump if you need a system for both backing up filesystems and restoring filesystems after backups.

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

Install dump on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install dump using yum by running the following command:

sudo yum -y install dump

Install dump 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 dump using dnf by running the following command:

sudo dnf -y install dump

How To Uninstall dump on CentOS 7

To uninstall only the dump package we can use the following command:

sudo dnf remove dump

References

Summary

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