How To Install dolphin-libs on CentOS 8

dolphin-libs is Dolphin runtime libraries

Introduction

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

What is dolphin-libs

Dolphin runtime libraries.

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

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

sudo dnf -y install dolphin-libs

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

sudo yum -y install dolphin-libs

How To Uninstall dolphin-libs on CentOS 8

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

sudo dnf remove dolphin-libs

dolphin-libs Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/08
/usr/lib/.build-id/08/353ea28ed49b3a023127698b4158047bc92cca
/usr/lib/.build-id/5c
/usr/lib/.build-id/5c/8b7c88cd8a921bec127b1d6a335a5a38c7eae8
/usr/lib/.build-id/98
/usr/lib/.build-id/98/5d21d922b6806e0de1aff1abaf6994cd62bc4b
/usr/lib/.build-id/99
/usr/lib/.build-id/99/0f29b002ad69e1182e7cbdd9dedea81fee8e39
/usr/lib/.build-id/c1
/usr/lib/.build-id/c1/4ddaa5fe47a4f6df0a912f8a2650c8c020b4ad
/usr/lib/.build-id/d1
/usr/lib/.build-id/d1/8e98fc8ae63bd0776ac9a6fc87bd6c4a825d00
/usr/lib/.build-id/ec
/usr/lib/.build-id/ec/d35ea41fe7a7e10fee5ac5983875ae6e36ff75
/usr/lib64/libdolphinprivate.so.5
/usr/lib64/libdolphinprivate.so.5.0.0
/usr/lib64/libdolphinvcs.so.5
/usr/lib64/libdolphinvcs.so.5.0.0
/usr/lib64/qt5/plugins/dolphinpart.so
/usr/lib64/qt5/plugins/kcm_dolphingeneral.so
/usr/lib64/qt5/plugins/kcm_dolphinnavigation.so
/usr/lib64/qt5/plugins/kcm_dolphinservices.so
/usr/lib64/qt5/plugins/kcm_dolphinviewmodes.so
/usr/share/kservices5/dolphinpart.desktop

References

Summary

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