How To Install libntirpc on Fedora 34

libntirpc is New Transport Independent RPC Library New Transport Independent RPC Library

Introduction

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

What is libntirpc

This package contains a new implementation of the original libtirpc, transport-independent RPC (TI-RPC) library for NFS-Ganesha. It has the following features not found in libtirpc 1. Bi-directional operation 2. Full-duplex operation on the TCP (vc) transport 3. Thread-safe operating modes 3.1 new locking primitives and lock callouts (interface change) 3.2 stateless send/recv on the TCP transport (interface change) 4. Flexible server integration support 5. Event channels (remove static arrays of xprt handles, new EPOLL/KEVENT integration) libntirpc 3.5 1.fc34 x86_64 118 k libntirpc-3.5-1.fc34.src.rpm updates New Transport Independent RPC Library https BSD This package contains a new implementation of the original libtirpc, transport-independent RPC (TI-RPC) library for NFS-Ganesha. It has the following features not found in libtirpc 1. Bi-directional operation 2. Full-duplex operation on the TCP (vc) transport 3. Thread-safe operating modes 3.1 new locking primitives and lock callouts (interface change) 3.2 stateless send/recv on the TCP transport (interface change) 4. Flexible server integration support 5. Event channels (remove static arrays of xprt handles, new EPOLL/KEVENT integration)

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

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

sudo dnf -y install libntirpc

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

sudo yum -y install libntirpc

How To Uninstall libntirpc on Fedora 34

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

sudo dnf remove libntirpc

libntirpc Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/4d
/usr/lib/.build-id/4d/ce4f5be749e6478a63396a2cbd5d1c86343392
/usr/lib/libntirpc.so.3
/usr/lib/libntirpc.so.3.5
/usr/share/doc/libntirpc
/usr/share/doc/libntirpc/NEWS
/usr/share/doc/libntirpc/README
/usr/share/licenses/libntirpc
/usr/share/licenses/libntirpc/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/57
/usr/lib/.build-id/57/587306f674f2625eae2e0a4c06b9246ea52e16
/usr/lib64/libntirpc.so.3
/usr/lib64/libntirpc.so.3.5
/usr/share/doc/libntirpc
/usr/share/doc/libntirpc/NEWS
/usr/share/doc/libntirpc/README
/usr/share/licenses/libntirpc
/usr/share/licenses/libntirpc/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/9b
/usr/lib/.build-id/9b/1915758661380264fda7ee1bc1d7d549e20df2
/usr/lib/libntirpc.so.3
/usr/lib/libntirpc.so.3.4
/usr/share/doc/libntirpc
/usr/share/doc/libntirpc/NEWS
/usr/share/doc/libntirpc/README
/usr/share/licenses/libntirpc
/usr/share/licenses/libntirpc/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/a1
/usr/lib/.build-id/a1/d8c4f79e70a463dc2e18f04905a74df3f1cd46
/usr/lib64/libntirpc.so.3
/usr/lib64/libntirpc.so.3.4
/usr/share/doc/libntirpc
/usr/share/doc/libntirpc/NEWS
/usr/share/doc/libntirpc/README
/usr/share/licenses/libntirpc
/usr/share/licenses/libntirpc/COPYING

References

Summary

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