How To Install libunibreak on Fedora 34

libunibreak is A Unicode line-breaking library A Unicode line-breaking library

Introduction

In this tutorial we learn how to install libunibreak on Fedora 34.

What is libunibreak

Libunibreak is an implementation of the line breaking and word breaking algorithms as described in Unicode Standard Annex 14 and Unicode Standard Annex 29. It is designed to be used in a generic text renderer. libunibreak 4.0 7.fc34 x86_64 33 k libunibreak-4.0-7.fc34.src.rpm fedora A Unicode line-breaking library http zlib Libunibreak is an implementation of the line breaking and word breaking algorithms as described in Unicode Standard Annex 14 and Unicode Standard Annex 29. It is designed to be used in a generic text renderer.

We can use yum or dnf to install libunibreak on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libunibreak.

Install libunibreak on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install libunibreak

Install libunibreak on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install libunibreak

How To Uninstall libunibreak on Fedora 34

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

sudo dnf remove libunibreak

libunibreak Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/5d
/usr/lib/.build-id/5d/c244bb0ac75f43b25413e086f816856032aeb7
/usr/lib64/libunibreak.so.3
/usr/lib64/libunibreak.so.3.1.0
/usr/share/doc/libunibreak
/usr/share/doc/libunibreak/AUTHORS
/usr/share/doc/libunibreak/NEWS
/usr/share/doc/libunibreak/README.md
/usr/share/licenses/libunibreak
/usr/share/licenses/libunibreak/LICENCE
/usr/lib/.build-id
/usr/lib/.build-id/78
/usr/lib/.build-id/78/2bd1b5d91a0b692b3193b40db79a8b48deb5be
/usr/lib/libunibreak.so.3
/usr/lib/libunibreak.so.3.1.0
/usr/share/doc/libunibreak
/usr/share/doc/libunibreak/AUTHORS
/usr/share/doc/libunibreak/NEWS
/usr/share/doc/libunibreak/README.md
/usr/share/licenses/libunibreak
/usr/share/licenses/libunibreak/LICENCE

References

Summary

In this tutorial we learn how to install libunibreak on Fedora 34 using yum and dnf.