How To Install nng on Fedora 34

nng is nanomsg next generation nanomsg next generation

Introduction

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

What is nng

nng (nanomsg next generation) is a socket library that provides several common communication patterns. It aims to make the networking layer fast, scalable, and easy to use. Implemented in C, it works on a wide range of operating systems with no further dependencies. The communication patterns, also called “scalability protocols”, are basic blocks for building distributed systems. By combining them you can create a vast array of distributed applications. nng 1.4.0 1.fc34 x86_64 190 k nng-1.4.0-1.fc34.src.rpm fedora nanomsg next generation https MIT nng (nanomsg next generation) is a socket library that provides several common communication patterns. It aims to make the networking layer fast, scalable, and easy to use. Implemented in C, it works on a wide range of operating systems with no further dependencies. The communication patterns, also called “scalability protocols”, are basic blocks for building distributed systems. By combining them you can create a vast array of distributed applications.

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

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

sudo dnf -y install nng

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

sudo yum -y install nng

How To Uninstall nng on Fedora 34

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

sudo dnf remove nng

nng Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/86
/usr/lib/.build-id/86/64adbd156fa020c549c93aaec5e07da8fd018b
/usr/lib/libnng.so.1
/usr/lib/libnng.so.1.4.0
/usr/share/licenses/nng
/usr/share/licenses/nng/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/99
/usr/lib/.build-id/99/a2511fff7903415121a4d302b683af56a7170d
/usr/lib64/libnng.so.1
/usr/lib64/libnng.so.1.4.0
/usr/share/licenses/nng
/usr/share/licenses/nng/LICENSE.txt

References

Summary

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