How To Install sombok on CentOS 8
Introduction
In this tutorial we learn how to install sombok
on CentOS 8.
What is sombok
Sombok library package performs Line Breaking Algorithm described in Unicode Standards Annex #14 (UAX #14). East_Asian_Width informative properties defined by Annex #11 (UAX #11) may be concerned to determine breaking positions. This package also implements “default” Grapheme Cluster segmentation described in Annex #29 (UAX #29). sombok 2.4.0 7.el8 x86_64 49 k sombok-2.4.0-7.el8.src.rpm powertools Unicode Text Segmentation Package http GPLv2+ or Artistic clarified Sombok library package performs Line Breaking Algorithm described in Unicode Standards Annex #14 (UAX #14). East_Asian_Width informative properties defined by Annex #11 (UAX #11) may be concerned to determine breaking positions. This package also implements “default” Grapheme Cluster segmentation described in Annex #29 (UAX #29).
We can use yum
or dnf
to install sombok
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install sombok.
Install sombok on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install sombok
using dnf
by running the following command:
sudo dnf -y install sombok
Install sombok on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install sombok
using yum
by running the following command:
sudo yum -y install sombok
How To Uninstall sombok on CentOS 8
To uninstall only the sombok
package we can use the following command:
sudo dnf remove sombok
sombok Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/96
/usr/lib/.build-id/96/00330e7f28b5a7e359c368feff877d5ae7c5bb
/usr/lib/libsombok.so.3
/usr/lib/libsombok.so.3.1.7
/usr/share/doc/sombok
/usr/share/doc/sombok/AUTHORS
/usr/share/doc/sombok/COPYING
/usr/share/doc/sombok/ChangeLog
/usr/share/doc/sombok/ChangeLog.REL1
/usr/share/doc/sombok/NEWS
/usr/share/doc/sombok/README
/usr/share/doc/sombok/README.ja_JP
/usr/lib/.build-id
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/e8102a8a375a86b92a4af0a95d114fd18c22ae
/usr/lib64/libsombok.so.3
/usr/lib64/libsombok.so.3.1.7
/usr/share/doc/sombok
/usr/share/doc/sombok/AUTHORS
/usr/share/doc/sombok/COPYING
/usr/share/doc/sombok/ChangeLog
/usr/share/doc/sombok/ChangeLog.REL1
/usr/share/doc/sombok/NEWS
/usr/share/doc/sombok/README
/usr/share/doc/sombok/README.ja_JP
References
- [sombok website](http://sf.net/projects/linefold/ http://sf.net/projects/linefold/)
Summary
In this tutorial we learn how to install sombok
on CentOS 8 using yum and dnf.