How To Install liblangtag on Rocky Linux 8

In this tutorial we learn how to install liblangtag on Rocky Linux 8. liblangtag is An interface library to access tags for identifying languages

Introduction

In this tutorial we learn how to install liblangtag on Rocky Linux 8.

What is liblangtag

liblangtag is an interface library to access tags for identifying languages. Features * several subtag registry database supports - language - extlang - script - region - variant - extension - grandfathered - redundant * handling of the language tags - parser - matching - canonicalizing

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

Install liblangtag on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install liblangtag using dnf by running the following command:

sudo dnf -y install liblangtag

Install liblangtag on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install liblangtag using yum by running the following command:

sudo yum -y install liblangtag

How To Uninstall liblangtag on Rocky Linux 8

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

sudo dnf remove liblangtag

liblangtag Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/79
/usr/lib/.build-id/79/d2be257eba15258790509312d294be4c18e078
/usr/lib/.build-id/a6
/usr/lib/.build-id/a6/65f61599464271479ef655c224b12091fd83c3
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/beeab3fa7cfd250153c0aee4f98de750cfd238
/usr/lib/liblangtag
/usr/lib/liblangtag.so.1
/usr/lib/liblangtag.so.1.4.1
/usr/lib/liblangtag/liblangtag-ext-ldml-t.so
/usr/lib/liblangtag/liblangtag-ext-ldml-u.so
/usr/share/doc/liblangtag
/usr/share/doc/liblangtag/AUTHORS
/usr/share/doc/liblangtag/NEWS
/usr/share/doc/liblangtag/README
/usr/lib/.build-id
/usr/lib/.build-id/a0
/usr/lib/.build-id/a0/8d03480c81e5e1ee0ccfd3a35fdd094ed6a4a2
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/ef0e21b1f9ab55cd67aa4a6bb51bb4dc8fcb2a
/usr/lib/.build-id/ec
/usr/lib/.build-id/ec/55c0b48b47b4597fc8225ad83f9c298900e3be
/usr/lib64/liblangtag
/usr/lib64/liblangtag.so.1
/usr/lib64/liblangtag.so.1.4.1
/usr/lib64/liblangtag/liblangtag-ext-ldml-t.so
/usr/lib64/liblangtag/liblangtag-ext-ldml-u.so
/usr/share/doc/liblangtag
/usr/share/doc/liblangtag/AUTHORS
/usr/share/doc/liblangtag/NEWS
/usr/share/doc/liblangtag/README

References

Summary

In this tutorial we learn how to install liblangtag on Rocky Linux 8 using yum and dnf.