How To Install cube-libs on CentOS 8

cube-libs is Non-GUI libraries for cube

Introduction

In this tutorial we learn how to install cube-libs on CentOS 8.

What is cube-libs

Non-GUI libraries required by cube

We can use yum or dnf to install cube-libs on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install cube-libs.

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

sudo dnf -y install cube-libs

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

sudo yum -y install cube-libs

How To Uninstall cube-libs on CentOS 8

To uninstall only the cube-libs package we can use the following command:

sudo dnf remove cube-libs

cube-libs Package Contents on CentOS 8

/usr/bin/cube_server
/usr/lib/.build-id
/usr/lib/.build-id/17/4161de4eb13f7b24bbb68bd8212ee6b9d0d0ea
/usr/lib/.build-id/5e/938e64ab27f4f910fe5785ef0ab38e0fd7cf25
/usr/lib/.build-id/9a
/usr/lib/.build-id/9a/eddc95b190be751b1ec6bd6cdb9c0cb42e34dd
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/32b54d2aed45b31d63e96d8b79d2ef28b4b234
/usr/lib64/libcube4.so.7
/usr/lib64/libcube4.so.7.2.0
/usr/lib64/libcube4w.so.7
/usr/lib64/libcube4w.so.7.2.0
/usr/share/cubelib
/usr/share/cubelib/cubelib.summary
/usr/share/cubew
/usr/share/cubew/cubew.summary
/usr/share/licenses/cube-libs
/usr/share/licenses/cube-libs/COPYING

References

Summary

In this tutorial we learn how to install cube-libs on CentOS 8 using yum and dnf.