How To Install wangle on Fedora 34

wangle is Framework for building services in a consistent/modular/composable way Framework for building services in a consistent/modular/composable way

Introduction

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

What is wangle

Wangle is a library that makes it easy to build protocols, application clients, and application servers. It’s like Netty + Finagle smooshed together, but in C++. wangle 2021.04.26.00 1.fc34 x86_64 301 k wangle-2021.04.26.00-1.fc34.src.rpm updates Framework for building services in a consistent/modular/composable way https ASL 2.0 Wangle is a library that makes it easy to build protocols, application clients, and application servers. It’s like Netty + Finagle smooshed together, but in C++.

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

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

sudo dnf -y install wangle

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

sudo yum -y install wangle

How To Uninstall wangle on Fedora 34

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

sudo dnf remove wangle

wangle Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/49
/usr/lib/.build-id/49/fcfc37a684e716dffb694acee40232d054e34a
/usr/lib64/libwangle.so.2021.03.29.00
/usr/lib64/libwangle.so.2021.3.29.0
/usr/share/licenses/wangle
/usr/share/licenses/wangle/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/54
/usr/lib/.build-id/54/ace1ea5b4bbbed115ab122513d04a6c5f4634c
/usr/lib/libwangle.so.2021.04.26.00
/usr/lib/libwangle.so.2021.4.26.0
/usr/share/licenses/wangle
/usr/share/licenses/wangle/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/c1
/usr/lib/.build-id/c1/80cd31bbc12ef2657530c5ea34311e81101524
/usr/lib64/libwangle.so.2021.04.26.00
/usr/lib64/libwangle.so.2021.4.26.0
/usr/share/licenses/wangle
/usr/share/licenses/wangle/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/e5
/usr/lib/.build-id/e5/833a3bd5adcc876ae2c65cf7bf1250f5f06205
/usr/lib/libwangle.so.2021.03.29.00
/usr/lib/libwangle.so.2021.3.29.0
/usr/share/licenses/wangle
/usr/share/licenses/wangle/LICENSE

References

Summary

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