How To Install icu on Rocky Linux 8

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

Introduction

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

What is icu

Tools and utilities for developing with icu.

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

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

sudo dnf -y install icu

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

sudo yum -y install icu

How To Uninstall icu on Rocky Linux 8

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

sudo dnf remove icu

icu Package Contents on Rocky Linux 8

/usr/bin/derb
/usr/bin/genbrk
/usr/bin/gencfu
/usr/bin/gencnval
/usr/bin/gendict
/usr/bin/genrb
/usr/bin/makeconv
/usr/bin/pkgdata
/usr/bin/uconv
/usr/lib/.build-id
/usr/lib/.build-id/06
/usr/lib/.build-id/06/a0f22407a24ad5f6f9b6970e884a5f42c72996
/usr/lib/.build-id/07
/usr/lib/.build-id/07/4a28ce9581fbe9ed70400e37cba8feaac2c95b
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/a00cd9f936b111ea9cb498e50b494529b7cecf
/usr/lib/.build-id/28
/usr/lib/.build-id/28/839b22d75442e39e7601e5ca563501c5235101
/usr/lib/.build-id/36
/usr/lib/.build-id/36/78639de477d022fe2e94df1bb4df211b74a398
/usr/lib/.build-id/45
/usr/lib/.build-id/45/83116100ce83420038405090850cbb5d1fb1f5
/usr/lib/.build-id/5a
/usr/lib/.build-id/5a/75f9f555ea5b9afcac6efad56a34ac055276c3
/usr/lib/.build-id/6b
/usr/lib/.build-id/6b/b6173db5ac8721654a02942513a91e8f4e1eab
/usr/lib/.build-id/a2
/usr/lib/.build-id/a2/91d506cf8428cd453fd6b942a0769abadd180a
/usr/lib/.build-id/b0
/usr/lib/.build-id/b0/c5a872ed1e34f1b8960865b6568d07d70afcde
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/460d6ace9ad5f2fb382d2d01f4df73dbcc42e3
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/32e117d314aa6197e6f343b78a801400852d48
/usr/lib/.build-id/d6
/usr/lib/.build-id/d6/0199e96d9d0d150f43834f8ec4c427e64c0b3f
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/c253ccd949c45f5427a33affa07e351253ac67
/usr/lib/.build-id/fa
/usr/lib/.build-id/fa/cf7bd6997eae828afed4653a48091d46dcb409
/usr/sbin/escapesrc
/usr/sbin/genccode
/usr/sbin/gencmn
/usr/sbin/gennorm2
/usr/sbin/gensprep
/usr/sbin/icupkg
/usr/share/licenses/icu
/usr/share/licenses/icu/license.html
/usr/share/man/man1/derb.1.gz
/usr/share/man/man1/genbrk.1.gz
/usr/share/man/man1/gencfu.1.gz
/usr/share/man/man1/gencnval.1.gz
/usr/share/man/man1/gendict.1.gz
/usr/share/man/man1/genrb.1.gz
/usr/share/man/man1/makeconv.1.gz
/usr/share/man/man1/pkgdata.1.gz
/usr/share/man/man1/uconv.1.gz
/usr/share/man/man8/genccode.8.gz
/usr/share/man/man8/gencmn.8.gz
/usr/share/man/man8/gennorm2.8.gz
/usr/share/man/man8/gensprep.8.gz
/usr/share/man/man8/icupkg.8.gz

References

Summary

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