How To Install rpc2 on Fedora 34
Introduction
In this tutorial we learn how to install rpc2
on Fedora 34.
What is rpc2
The RPC2 library, a C library for remote procedure calls over UDP. rpc2 2.10 26.fc34 x86_64 147 k rpc2-2.10-26.fc34.src.rpm fedora C library for remote procedure calls over UDP http LGPLv2 The RPC2 library, a C library for remote procedure calls over UDP.
We can use yum
or dnf
to install rpc2
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install rpc2.
Install rpc2 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 rpc2
using dnf
by running the following command:
sudo dnf -y install rpc2
Install rpc2 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 rpc2
using yum
by running the following command:
sudo yum -y install rpc2
How To Uninstall rpc2 on Fedora 34
To uninstall only the rpc2
package we can use the following command:
sudo dnf remove rpc2
rpc2 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/21
/usr/lib/.build-id/21/ba88598e34013c87ad0b51df94fe1af8411104
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/852d179b164042d78bbcf1e1334702ebf3b7a9
/usr/lib/librpc2.so.5
/usr/lib/librpc2.so.5.4.5
/usr/lib/libse.so.5
/usr/lib/libse.so.5.4.5
/usr/share/doc/rpc2
/usr/share/doc/rpc2/COPYING
/usr/share/doc/rpc2/NEWS
/usr/share/rpc2
/usr/share/rpc2/rpc2-fail.lua
/usr/share/rpc2/rpc2-rtt-adaptive.lua
/usr/share/rpc2/rpc2-rtt-fixed.lua
/usr/share/rpc2/rpc2-rtt-vj.lua
/usr/lib/.build-id
/usr/lib/.build-id/89
/usr/lib/.build-id/89/3d34b9cfd338d1b7db4e04eccea5fa42314b00
/usr/lib/.build-id/cd
/usr/lib/.build-id/cd/be6bbf5fff94c2fb207ea19c7e8fa2beb63d94
/usr/lib64/librpc2.so.5
/usr/lib64/librpc2.so.5.4.5
/usr/lib64/libse.so.5
/usr/lib64/libse.so.5.4.5
/usr/share/doc/rpc2
/usr/share/doc/rpc2/COPYING
/usr/share/doc/rpc2/NEWS
/usr/share/rpc2
/usr/share/rpc2/rpc2-fail.lua
/usr/share/rpc2/rpc2-rtt-adaptive.lua
/usr/share/rpc2/rpc2-rtt-fixed.lua
/usr/share/rpc2/rpc2-rtt-vj.lua
References
- [rpc2 website](http://www.coda.cs.cmu.edu/ http://www.coda.cs.cmu.edu/)
Summary
In this tutorial we learn how to install rpc2
on Fedora 34 using yum and dnf.