How To Install man-db on AlmaLinux 8
Introduction
In this tutorial we learn how to install man-db
on AlmaLinux 8.
What is man-db
The man-db package includes five tools for browsing man-pages man, whatis, apropos, manpath and lexgrog. man formats and displays manual pages. whatis searches the manual page names. apropos searches the manual page names and descriptions. manpath determines search path for manual pages. lexgrog directly reads header information in manual pages.
We can use yum
or dnf
to install man-db
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install man-db.
Install man-db on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install man-db
using dnf
by running the following command:
sudo dnf -y install man-db
Install man-db on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install man-db
using yum
by running the following command:
sudo yum -y install man-db
How To Uninstall man-db on AlmaLinux 8
To uninstall only the man-db
package we can use the following command:
sudo dnf remove man-db
References
Summary
In this tutorial we learn how to install man-db
on AlmaLinux 8 using yum and dnf.