How To Install OpenThreads on Fedora 34

OpenThreads is OpenThreads OpenThreads

Introduction

In this tutorial we learn how to install OpenThreads on Fedora 34.

What is OpenThreads

OpenThreads is intended to provide a minimal & complete Object-Oriented (OO) thread interface for C++ programmers. It is loosely modeled on the Java thread API, and the POSIX Threads standards. The architecture of the library is designed around “swappable” thread models which are defined at compile-time in a shared object library. OpenThreads 3.4.1 27.fc34 x86_64 66 k OpenSceneGraph-3.4.1-27.fc34.src.rpm updates OpenThreads http wxWidgets OpenThreads is intended to provide a minimal & complete Object-Oriented (OO) thread interface for C++ programmers. It is loosely modeled on the Java thread API, and the POSIX Threads standards. The architecture of the library is designed around “swappable” thread models which are defined at compile-time in a shared object library.

We can use yum or dnf to install OpenThreads on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install OpenThreads.

Install OpenThreads on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install OpenThreads using dnf by running the following command:

sudo dnf -y install OpenThreads

Install OpenThreads on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install OpenThreads using yum by running the following command:

sudo yum -y install OpenThreads

How To Uninstall OpenThreads on Fedora 34

To uninstall only the OpenThreads package we can use the following command:

sudo dnf remove OpenThreads

OpenThreads Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/02/0ac003448a367b73b896fd9154780d5b8e75ef
/usr/lib64/libOpenThreads.so.20
/usr/lib64/libOpenThreads.so.3.3.0
/usr/share/doc/OpenThreads
/usr/share/doc/OpenThreads/AUTHORS.txt
/usr/share/doc/OpenThreads/NEWS.txt
/usr/share/doc/OpenThreads/README.txt
/usr/share/licenses/OpenThreads
/usr/share/licenses/OpenThreads/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/98
/usr/lib/.build-id/98/86147b9e0eb34198b2df179c6f1cafabdccd19
/usr/lib/libOpenThreads.so.20
/usr/lib/libOpenThreads.so.3.3.0
/usr/share/doc/OpenThreads
/usr/share/doc/OpenThreads/AUTHORS.txt
/usr/share/doc/OpenThreads/NEWS.txt
/usr/share/doc/OpenThreads/README.txt
/usr/share/licenses/OpenThreads
/usr/share/licenses/OpenThreads/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/b7/e8189c4e3a141f18dc5c039fc6b1657916c74a
/usr/lib/libOpenThreads.so.20
/usr/lib/libOpenThreads.so.3.3.0
/usr/share/doc/OpenThreads
/usr/share/doc/OpenThreads/AUTHORS.txt
/usr/share/doc/OpenThreads/NEWS.txt
/usr/share/doc/OpenThreads/README.txt
/usr/share/licenses/OpenThreads
/usr/share/licenses/OpenThreads/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/ec
/usr/lib/.build-id/ec/fedd6841d01f9a09cf52063eb0f783a6569f6b
/usr/lib64/libOpenThreads.so.20
/usr/lib64/libOpenThreads.so.3.3.0
/usr/share/doc/OpenThreads
/usr/share/doc/OpenThreads/AUTHORS.txt
/usr/share/doc/OpenThreads/NEWS.txt
/usr/share/doc/OpenThreads/README.txt
/usr/share/licenses/OpenThreads
/usr/share/licenses/OpenThreads/LICENSE.txt

References

Summary

In this tutorial we learn how to install OpenThreads on Fedora 34 using yum and dnf.