How To Install librevenge-gdb on AlmaLinux 8

In this tutorial we learn how to install librevenge-gdb in AlmaLinux 8. librevenge-gdb is gdb pretty printers for librevenge

Introduction

In this tutorial we learn how to install librevenge-gdb on AlmaLinux 8.

What is librevenge-gdb

The librevenge-devel package contains gdb pretty printers that help with debugging applications that use librevenge.

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

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

sudo dnf -y install librevenge-gdb

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

sudo yum -y install librevenge-gdb

How To Uninstall librevenge-gdb on AlmaLinux 8

To uninstall only the librevenge-gdb package we can use the following command:

sudo dnf remove librevenge-gdb

References

Summary

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