How To Install qt5-qtremoteobjects on CentOS 8

qt5-qtremoteobjects is Qt5 - Qt Remote Objects

Introduction

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

What is qt5-qtremoteobjects

Qt Remote Objects (QtRO) is an inter-process communication (IPC) module developed for Qt.

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

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

sudo dnf -y install qt5-qtremoteobjects

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

sudo yum -y install qt5-qtremoteobjects

How To Uninstall qt5-qtremoteobjects on CentOS 8

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

sudo dnf remove qt5-qtremoteobjects

qt5-qtremoteobjects Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/ca603636f233248009afba1984372e178bbd27
/usr/lib/.build-id/33
/usr/lib/.build-id/33/246dc2c4d1aacd6b0ae4a8f687d868797708be
/usr/lib/.build-id/b1
/usr/lib/.build-id/b1/7e53f6296786cfc48ce354e3b972db2defefa1
/usr/lib/.build-id/bb
/usr/lib/.build-id/bb/19752bbec33cf8705ca96e3d587fcb2a908f95
/usr/lib64/libQt5RemoteObjects.so.5
/usr/lib64/libQt5RemoteObjects.so.5.12
/usr/lib64/libQt5RemoteObjects.so.5.12.8
/usr/lib64/qt5/bin/repc
/usr/lib64/qt5/qml/QtQml/RemoteObjects
/usr/lib64/qt5/qml/QtQml/RemoteObjects/libqtqmlremoteobjects.so
/usr/lib64/qt5/qml/QtQml/RemoteObjects/plugins.qmltypes
/usr/lib64/qt5/qml/QtQml/RemoteObjects/qmldir
/usr/lib64/qt5/qml/QtRemoteObjects
/usr/lib64/qt5/qml/QtRemoteObjects/libqtremoteobjects.so
/usr/lib64/qt5/qml/QtRemoteObjects/plugins.qmltypes
/usr/lib64/qt5/qml/QtRemoteObjects/qmldir
/usr/share/licenses/qt5-qtremoteobjects
/usr/share/licenses/qt5-qtremoteobjects/LICENSE.GPL2
/usr/share/licenses/qt5-qtremoteobjects/LICENSE.GPL3
/usr/share/licenses/qt5-qtremoteobjects/LICENSE.GPL3-EXCEPT
/usr/share/licenses/qt5-qtremoteobjects/LICENSE.LGPL3

References

Summary

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