How To Install libdbi-doc on AlmaLinux 8

In this tutorial we learn how to install libdbi-doc in AlmaLinux 8. libdbi-doc is Documentation for libdbi (Database Independent Abstraction Layer for C)

Introduction

In this tutorial we learn how to install libdbi-doc on AlmaLinux 8.

What is libdbi-doc

The libdbi-doc package contains guides for development of applications with libdbi.

We can use yum or dnf to install libdbi-doc on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libdbi-doc.

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

sudo dnf -y install libdbi-doc

Install libdbi-doc 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 libdbi-doc using yum by running the following command:

sudo yum -y install libdbi-doc

How To Uninstall libdbi-doc on AlmaLinux 8

To uninstall only the libdbi-doc package we can use the following command:

sudo dnf remove libdbi-doc

References

Summary

In this tutorial we learn how to install libdbi-doc on AlmaLinux 8 using yum and dnf.