How To Install libedit on AlmaLinux 8

In this tutorial we learn how to install libedit in AlmaLinux 8. libedit is The NetBSD Editline library

Introduction

In this tutorial we learn how to install libedit on AlmaLinux 8.

What is libedit

Libedit is an autotool- and libtoolized port of the NetBSD Editline library. It provides generic line editing, history, and tokenization functions, similar to those found in GNU Readline.

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

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

sudo dnf -y install libedit

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

sudo yum -y install libedit

How To Uninstall libedit on AlmaLinux 8

To uninstall only the libedit package we can use the following command:

sudo dnf remove libedit

References

Summary

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