How To Install qt5-qtstyleplugins on CentOS 8

qt5-qtstyleplugins is Classic Qt widget styles

Introduction

In this tutorial we learn how to install qt5-qtstyleplugins on CentOS 8.

What is qt5-qtstyleplugins

Classic Qt widget styles, including cleanlooks, motif, plastique, qgtk.

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

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

sudo dnf -y install qt5-qtstyleplugins

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

sudo yum -y install qt5-qtstyleplugins

How To Uninstall qt5-qtstyleplugins on CentOS 8

To uninstall only the qt5-qtstyleplugins package we can use the following command:

sudo dnf remove qt5-qtstyleplugins

qt5-qtstyleplugins Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/61
/usr/lib/.build-id/61/989fd89493705398ea8e9bc980385c5c551c3d
/usr/lib/.build-id/66
/usr/lib/.build-id/66/aea0b2758cba426b420429682a212698d62177
/usr/lib/.build-id/86
/usr/lib/.build-id/86/4d5b4418ff7ed8904ef6564b73f1c2215a119f
/usr/lib/.build-id/a6
/usr/lib/.build-id/a6/15f958ec79431c08400fd0a2d4400366c864fd
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/41f4ef37d784cc6244549cd77f29691f74df42
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/5e27bbcaab286ac367934056086c5dfc9295d6
/usr/lib64/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake
/usr/lib64/cmake/Qt5Widgets/Qt5Widgets_QBB10StylePlugin.cmake
/usr/lib64/cmake/Qt5Widgets/Qt5Widgets_QCleanlooksStylePlugin.cmake
/usr/lib64/cmake/Qt5Widgets/Qt5Widgets_QGtk2StylePlugin.cmake
/usr/lib64/cmake/Qt5Widgets/Qt5Widgets_QMotifStylePlugin.cmake
/usr/lib64/cmake/Qt5Widgets/Qt5Widgets_QPlastiqueStylePlugin.cmake
/usr/lib64/qt5/plugins/platformthemes/libqgtk2.so
/usr/lib64/qt5/plugins/styles/libbb10styleplugin.so
/usr/lib64/qt5/plugins/styles/libqcleanlooksstyle.so
/usr/lib64/qt5/plugins/styles/libqgtk2style.so
/usr/lib64/qt5/plugins/styles/libqmotifstyle.so
/usr/lib64/qt5/plugins/styles/libqplastiquestyle.so

References

Summary

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