How To Install dump.x86_64 on Amazon Linux 2
Introduction
In this tutorial we learn how to install dump.x86_64
on Amazon Linux 2.
What is dump.x86_64
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
to install dump.x86_64
on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install dump.x86_64.
Install dump.x86_64 on Amazon Linux 2 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install dump.x86_64
using yum
by running the following command:
sudo yum -y install dump.x86_64
How To Uninstall dump.x86_64 on Amazon Linux 2
To uninstall only the dump.x86_64
package we can use the following command:
sudo yum remove dump.x86_64
dump.x86_64 Package Contents on Amazon Linux 2
/etc/dumpdates
/usr/sbin/dump
/usr/sbin/rdump
/usr/sbin/restore
/usr/sbin/rrestore
/usr/share/doc/dump-0.4
/usr/share/doc/dump-0.4/CHANGES
/usr/share/doc/dump-0.4/KNOWNBUGS
/usr/share/doc/dump-0.4/MAINTAINERS
/usr/share/doc/dump-0.4/README
/usr/share/doc/dump-0.4/REPORTING-BUGS
/usr/share/doc/dump-0.4/THANKS
/usr/share/doc/dump-0.4/TODO
/usr/share/doc/dump-0.4/dump.lsm
/usr/share/man/man8/dump.8.gz
/usr/share/man/man8/rdump.8.gz
/usr/share/man/man8/restore.8.gz
/usr/share/man/man8/rrestore.8.gz
References
Summary
In this tutorial we learn how to install dump.x86_64
on Amazon Linux 2 using yum.