How To Install libicu on Rocky Linux 8

In this tutorial we learn how to install libicu on Rocky Linux 8. libicu is International Components for Unicode - libraries

Introduction

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

What is libicu

The International Components for Unicode (ICU) libraries provide robust and full-featured Unicode services on a wide variety of platforms. ICU supports the most current version of the Unicode standard, and they provide support for supplementary Unicode characters (needed for GB 18030 repertoire support). As computing environments become more heterogeneous, software portability becomes more important. ICU lets you produce the same results across all the various platforms you support, without sacrificing performance. It offers great flexibility to extend and customize the supplied services.

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

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

sudo dnf -y install libicu

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

sudo yum -y install libicu

How To Uninstall libicu on Rocky Linux 8

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

sudo dnf remove libicu

libicu Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/30
/usr/lib/.build-id/30/41cbd9b9c5bf217ddd47e845ff98d7ebf3ac77
/usr/lib/.build-id/83
/usr/lib/.build-id/83/2cbbf9ac39faeb213d6980781d5de3ad3f648c
/usr/lib/.build-id/87/097de01f60fcb334f708f5b941d14712ecb930
/usr/lib/.build-id/8d
/usr/lib/.build-id/8d/aab8f9b603b5c825591d9ee05c33c0feedd000
/usr/lib/.build-id/f7
/usr/lib/.build-id/f7/db787e5759a7c271b82a956ba96016af4b5017
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/64e12d3c0b9489ff4b16fa26c86725fdbeaee4
/usr/lib/libicudata.so.60
/usr/lib/libicudata.so.60.3
/usr/lib/libicui18n.so.60
/usr/lib/libicui18n.so.60.3
/usr/lib/libicuio.so.60
/usr/lib/libicuio.so.60.3
/usr/lib/libicutest.so.60
/usr/lib/libicutest.so.60.3
/usr/lib/libicutu.so.60
/usr/lib/libicutu.so.60.3
/usr/lib/libicuuc.so.60
/usr/lib/libicuuc.so.60.3
/usr/share/doc/libicu
/usr/share/doc/libicu/readme.html
/usr/share/licenses/libicu
/usr/share/licenses/libicu/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/dfb34f262b8bcff4f1e3725f1463eea84e986a
/usr/lib/.build-id/4d
/usr/lib/.build-id/4d/a850c03a0dfd8a5db8be7c7da3a1c080533eef
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/84fce4830731031a984a12125b18c0802b62fd
/usr/lib/.build-id/6a
/usr/lib/.build-id/6a/2b3e5aed69d84549794af1a6988ac9aa5f36a1
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/f47d0dbed87fd630dec05ea60d8e78ea682219
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/1926f5f874b721b69d4b6b2a8132a0f46c58ee
/usr/lib64/libicudata.so.60
/usr/lib64/libicudata.so.60.3
/usr/lib64/libicui18n.so.60
/usr/lib64/libicui18n.so.60.3
/usr/lib64/libicuio.so.60
/usr/lib64/libicuio.so.60.3
/usr/lib64/libicutest.so.60
/usr/lib64/libicutest.so.60.3
/usr/lib64/libicutu.so.60
/usr/lib64/libicutu.so.60.3
/usr/lib64/libicuuc.so.60
/usr/lib64/libicuuc.so.60.3
/usr/share/doc/libicu
/usr/share/doc/libicu/readme.html
/usr/share/licenses/libicu
/usr/share/licenses/libicu/LICENSE

References

Summary

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