How To Install libtirpc on Fedora 34
Introduction
In this tutorial we learn how to install libtirpc
on Fedora 34.
What is libtirpc
This package contains SunLib’s implementation of transport-independent RPC (TI-RPC) documentation. This library forms a piece of the base of Open Network Computing (ONC), and is derived directly from the Solaris 2.3 source. TI-RPC is an enhanced version of TS-RPC that requires the UNIX System V Transport Layer Interface (TLI) or an equivalent X/Open Transport Interface (XTI). TI-RPC is on-the-wire compatible with the TS-RPC, which is supported by almost 70 vendors on all major operating systems. TS-RPC source code (RPCSRC 4.0) remains available from several internet sites. libtirpc 1.3.2 0.fc34 i686 100 k libtirpc-1.3.2-0.fc34.src.rpm updates Transport Independent RPC Library http SISSL and BSD This package contains SunLib’s implementation of transport-independent RPC (TI-RPC) documentation. This library forms a piece of the base of Open Network Computing (ONC), and is derived directly from the Solaris 2.3 source. TI-RPC is an enhanced version of TS-RPC that requires the UNIX System V Transport Layer Interface (TLI) or an equivalent X/Open Transport Interface (XTI). TI-RPC is on-the-wire compatible with the TS-RPC, which is supported by almost 70 vendors on all major operating systems. TS-RPC source code (RPCSRC 4.0) remains available from several internet sites.
We can use yum
or dnf
to install libtirpc
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libtirpc.
Install libtirpc 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 libtirpc
using dnf
by running the following command:
sudo dnf -y install libtirpc
Install libtirpc 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 libtirpc
using yum
by running the following command:
sudo yum -y install libtirpc
How To Uninstall libtirpc on Fedora 34
To uninstall only the libtirpc
package we can use the following command:
sudo dnf remove libtirpc
libtirpc Package Contents on Fedora 34
/etc/bindresvport.blacklist
/etc/netconfig
/lib/libtirpc.so.3
/lib/libtirpc.so.3.0.0
/usr/lib/.build-id
/usr/lib/.build-id/a5
/usr/lib/.build-id/a5/9f4aba6c435b78a0f6425318e42beb0b7aa301
/usr/share/doc/libtirpc
/usr/share/doc/libtirpc/AUTHORS
/usr/share/doc/libtirpc/ChangeLog
/usr/share/doc/libtirpc/NEWS
/usr/share/doc/libtirpc/README
/etc/bindresvport.blacklist
/etc/netconfig
/lib/libtirpc.so.3
/lib/libtirpc.so.3.0.0
/usr/lib/.build-id
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/c5165d906e034e4d91530a00ee265d61317812
/usr/share/doc/libtirpc
/usr/share/doc/libtirpc/AUTHORS
/usr/share/doc/libtirpc/ChangeLog
/usr/share/doc/libtirpc/NEWS
/usr/share/doc/libtirpc/README
/etc/bindresvport.blacklist
/etc/netconfig
/lib64/libtirpc.so.3
/lib64/libtirpc.so.3.0.0
/usr/lib/.build-id
/usr/lib/.build-id/34
/usr/lib/.build-id/34/a705b09e8166c9c847e3b3704db968032f01af
/usr/share/doc/libtirpc
/usr/share/doc/libtirpc/AUTHORS
/usr/share/doc/libtirpc/ChangeLog
/usr/share/doc/libtirpc/NEWS
/usr/share/doc/libtirpc/README
/etc/bindresvport.blacklist
/etc/netconfig
/lib64/libtirpc.so.3
/lib64/libtirpc.so.3.0.0
/usr/lib/.build-id
/usr/lib/.build-id/79
/usr/lib/.build-id/79/17c74b31913bf7048d3a8f36cfd2d15d2e3228
/usr/share/doc/libtirpc
/usr/share/doc/libtirpc/AUTHORS
/usr/share/doc/libtirpc/ChangeLog
/usr/share/doc/libtirpc/NEWS
/usr/share/doc/libtirpc/README
References
- [libtirpc website](http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary)
Summary
In this tutorial we learn how to install libtirpc
on Fedora 34 using yum and dnf.