How To Install dump on Fedora 36
Introduction
In this tutorial we learn how to install dump
on Fedora 36.
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.
We can use yum
or dnf
to install dump
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install dump.
Install dump on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install dump
using dnf
by running the following command:
sudo dnf -y install dump
Install dump on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install dump
using yum
by running the following command:
sudo yum -y install dump
How To Uninstall dump on Fedora 36
To uninstall only the dump
package we can use the following command:
sudo dnf remove dump
dump Package Contents on Fedora 36
/etc/dumpdates
/usr/lib/.build-id
/usr/lib/.build-id/7c
/usr/lib/.build-id/7c/9a687a2006b90000babb4f8afde8b989d35e82
/usr/lib/.build-id/93
/usr/lib/.build-id/93/e25619813cb207f5d23057463f7e932cfdaec6
/usr/sbin/dump
/usr/sbin/rdump
/usr/sbin/restore
/usr/sbin/rrestore
/usr/share/doc/dump
/usr/share/doc/dump/AUTHORS
/usr/share/doc/dump/COPYING
/usr/share/doc/dump/INSTALL
/usr/share/doc/dump/KNOWNBUGS
/usr/share/doc/dump/MAINTAINERS
/usr/share/doc/dump/NEWS
/usr/share/doc/dump/README
/usr/share/doc/dump/REPORTING-BUGS
/usr/share/doc/dump/TODO
/usr/share/doc/dump/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
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).