How To Install libopkele on Fedora 34
Introduction
In this tutorial we learn how to install libopkele
on Fedora 34.
What is libopkele
libopkele is a C++ implementation of the OpenID decentralized identity system. It provides OpenID protocol handling, leaving authentication and user interaction to the implementor. libopkele 2.0.4 31.fc34 x86_64 110 k libopkele-2.0.4-31.fc34.src.rpm fedora C++ implementation of the OpenID decentralized identity system http MIT libopkele is a C++ implementation of the OpenID decentralized identity system. It provides OpenID protocol handling, leaving authentication and user interaction to the implementor.
We can use yum
or dnf
to install libopkele
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libopkele.
Install libopkele 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 libopkele
using dnf
by running the following command:
sudo dnf -y install libopkele
Install libopkele 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 libopkele
using yum
by running the following command:
sudo yum -y install libopkele
How To Uninstall libopkele on Fedora 34
To uninstall only the libopkele
package we can use the following command:
sudo dnf remove libopkele
libopkele Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/5e
/usr/lib/.build-id/5e/d713465ef9b12b1a6de49d4dc35b62833826de
/usr/lib/libopkele.so.3
/usr/lib/libopkele.so.3.0.0
/usr/share/doc/libopkele
/usr/share/doc/libopkele/AUTHORS
/usr/share/doc/libopkele/COPYING
/usr/share/doc/libopkele/NEWS
/usr/lib/.build-id
/usr/lib/.build-id/c3
/usr/lib/.build-id/c3/d4d0a6ed2b12e9e12506dc15befe0377eb4680
/usr/lib64/libopkele.so.3
/usr/lib64/libopkele.so.3.0.0
/usr/share/doc/libopkele
/usr/share/doc/libopkele/AUTHORS
/usr/share/doc/libopkele/COPYING
/usr/share/doc/libopkele/NEWS
References
- [libopkele website](http://kin.klever.net/libopkele/ http://kin.klever.net/libopkele/)
Summary
In this tutorial we learn how to install libopkele
on Fedora 34 using yum and dnf.