How To Install qt3.x86_64 on Amazon Linux 2

In this tutorial we learn how to install qt3.x86_64 in Amazon Linux 2. qt3.x86_64 is The shared library for the Qt 3 GUI toolkit

Introduction

In this tutorial we learn how to install qt3.x86_64 on Amazon Linux 2.

What is qt3.x86_64

Qt is a GUI software toolkit which simplifies the task of writing and maintaining GUI (Graphical User Interface) applications for the X Window System. Qt is written in C++ and is fully object-oriented. This package contains the shared library needed to run Qt 3 applications, as well as the README files for Qt 3.

We can use yum to install qt3.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install qt3.x86_64.

Install qt3.x86_64 on Amazon Linux 2 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install qt3.x86_64 using yum by running the following command:

sudo yum -y install qt3.x86_64

How To Uninstall qt3.x86_64 on Amazon Linux 2

To uninstall only the qt3.x86_64 package we can use the following command:

sudo yum remove qt3.x86_64

qt3.x86_64 Package Contents on Amazon Linux 2

/etc/ld.so.conf.d/qt-x86_64.conf
/etc/profile.d/qt.csh
/etc/profile.d/qt.sh
/usr/lib64/qt-3.3
/usr/lib64/qt-3.3/bin
/usr/lib64/qt-3.3/etc
/usr/lib64/qt-3.3/etc/settings
/usr/lib64/qt-3.3/etc/settings/qtrc
/usr/lib64/qt-3.3/lib
/usr/lib64/qt-3.3/lib/libqt-mt.so.3
/usr/lib64/qt-3.3/lib/libqt-mt.so.3.3
/usr/lib64/qt-3.3/lib/libqt-mt.so.3.3.8
/usr/lib64/qt-3.3/lib/libqui.so.1
/usr/lib64/qt-3.3/lib/libqui.so.1.0
/usr/lib64/qt-3.3/lib/libqui.so.1.0.0
/usr/lib64/qt-3.3/plugins
/usr/lib64/qt-3.3/plugins/designer
/usr/lib64/qt-3.3/plugins/designer/libcppeditor.so
/usr/lib64/qt-3.3/plugins/designer/libdlgplugin.so
/usr/lib64/qt-3.3/plugins/designer/libgladeplugin.so
/usr/lib64/qt-3.3/plugins/designer/libkdevdlgplugin.so
/usr/lib64/qt-3.3/plugins/designer/librcplugin.so
/usr/lib64/qt-3.3/plugins/designer/libwizards.so
/usr/lib64/qt-3.3/plugins/inputmethods
/usr/lib64/qt-3.3/plugins/inputmethods/libqimsw-multi.so
/usr/lib64/qt-3.3/plugins/inputmethods/libqimsw-none.so
/usr/lib64/qt-3.3/plugins/inputmethods/libqsimple.so
/usr/lib64/qt-3.3/plugins/inputmethods/libqxim.so
/usr/lib64/qt-3.3/plugins/sqldrivers
/usr/lib64/qt-3.3/plugins/styles
/usr/lib64/qt-3.3/translations
/usr/lib64/qt-3.3/translations/assistant_de.qm
/usr/lib64/qt-3.3/translations/qt_ar.qm
/usr/lib64/qt-3.3/translations/qt_ca.qm
/usr/lib64/qt-3.3/translations/qt_cs.qm
/usr/lib64/qt-3.3/translations/qt_de.qm
/usr/lib64/qt-3.3/translations/qt_es.qm
/usr/lib64/qt-3.3/translations/qt_fr.qm
/usr/lib64/qt-3.3/translations/qt_he.qm
/usr/lib64/qt-3.3/translations/qt_it.qm
/usr/lib64/qt-3.3/translations/qt_ja.qm
/usr/lib64/qt-3.3/translations/qt_nb.qm
/usr/lib64/qt-3.3/translations/qt_pt-br.qm
/usr/lib64/qt-3.3/translations/qt_ru.qm
/usr/lib64/qt-3.3/translations/qt_sk.qm
/usr/lib64/qt-3.3/translations/qt_zh-cn.qm
/usr/lib64/qt-3.3/translations/qt_zh-tw.qm
/usr/share/doc/qt3-3.3.8b
/usr/share/doc/qt3-3.3.8b/FAQ
/usr/share/doc/qt3-3.3.8b/LICENSE.GPL2
/usr/share/doc/qt3-3.3.8b/LICENSE.GPL3
/usr/share/doc/qt3-3.3.8b/LICENSE.QPL
/usr/share/doc/qt3-3.3.8b/README
/usr/share/doc/qt3-3.3.8b/README-QT.TXT
/usr/share/doc/qt3-3.3.8b/README.immodule
/usr/share/doc/qt3-3.3.8b/changes-3.3.8
/usr/share/doc/qt3-3.3.8b/changes-3.3.8b
/usr/share/doc/qt3-3.3.8b/changes.immodule

References

Summary

In this tutorial we learn how to install qt3.x86_64 on Amazon Linux 2 using yum.