How To Install perl-Text-Unidecode on AlmaLinux 8

In this tutorial we learn how to install perl-Text-Unidecode in AlmaLinux 8. perl-Text-Unidecode is US-ASCII transliterations of Unicode text

Introduction

In this tutorial we learn how to install perl-Text-Unidecode on AlmaLinux 8.

What is perl-Text-Unidecode

Text Unicode data and tries to represent it in US-ASCII characters (i.e., the universally displayable characters between 0x00 and 0x7F). The representation is almost always an attempt at transliteration – i.e., conveying, in Roman letters, the pronunciation expressed by the text in some other writing system.

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

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

sudo dnf -y install perl-Text-Unidecode

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

sudo yum -y install perl-Text-Unidecode

How To Uninstall perl-Text-Unidecode on AlmaLinux 8

To uninstall only the perl-Text-Unidecode package we can use the following command:

sudo dnf remove perl-Text-Unidecode

References

Summary

In this tutorial we learn how to install perl-Text-Unidecode on AlmaLinux 8 using yum and dnf.