How To Install libhangul on Rocky Linux 8

In this tutorial we learn how to install libhangul on Rocky Linux 8. libhangul is Hangul input library

Introduction

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

What is libhangul

libhangul provides common features for Hangul input method programs.

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

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

sudo dnf -y install libhangul

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

sudo yum -y install libhangul

How To Uninstall libhangul on Rocky Linux 8

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

sudo dnf remove libhangul

libhangul Package Contents on Rocky Linux 8

/usr/bin/hangul
/usr/lib/.build-id
/usr/lib/.build-id/44
/usr/lib/.build-id/44/03e70b13e173f0acc620ae4ccd3156f41ae413
/usr/lib/.build-id/86
/usr/lib/.build-id/86/e6aabfa76b381a96a84ba5a899b4c1c9ede576
/usr/lib/libhangul.so.1
/usr/lib/libhangul.so.1.0.0
/usr/share/doc/libhangul
/usr/share/doc/libhangul/AUTHORS
/usr/share/doc/libhangul/COPYING
/usr/share/doc/libhangul/ChangeLog
/usr/share/doc/libhangul/NEWS
/usr/share/doc/libhangul/README
/usr/share/libhangul
/usr/share/libhangul/hanja
/usr/share/libhangul/hanja/hanja.txt
/usr/share/locale/ko/LC_MESSAGES/libhangul.mo
/usr/bin/hangul
/usr/lib/.build-id
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/656a4cadd46fb238e72d6fd873691a4ca1795f
/usr/lib/.build-id/c9
/usr/lib/.build-id/c9/165cde7b09ca3e795b5e1c95069595c6c24fdc
/usr/lib64/libhangul.so.1
/usr/lib64/libhangul.so.1.0.0
/usr/share/doc/libhangul
/usr/share/doc/libhangul/AUTHORS
/usr/share/doc/libhangul/COPYING
/usr/share/doc/libhangul/ChangeLog
/usr/share/doc/libhangul/NEWS
/usr/share/doc/libhangul/README
/usr/share/libhangul
/usr/share/libhangul/hanja
/usr/share/libhangul/hanja/hanja.txt
/usr/share/locale/ko/LC_MESSAGES/libhangul.mo

References

Summary

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