How To Install libjose on Fedora 34
Introduction
In this tutorial we learn how to install libjose
on Fedora 34.
What is libjose
This package contains a C library for performing JOSE operations. libjose 11 1.fc34 x86_64 65 k jose-11-1.fc34.src.rpm updates Library implementing JSON Object Signing and Encryption https ASL 2.0 This package contains a C library for performing JOSE operations.
We can use yum
or dnf
to install libjose
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libjose.
Install libjose 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 libjose
using dnf
by running the following command:
sudo dnf -y install libjose
Install libjose 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 libjose
using yum
by running the following command:
sudo yum -y install libjose
How To Uninstall libjose on Fedora 34
To uninstall only the libjose
package we can use the following command:
sudo dnf remove libjose
libjose Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/8d
/usr/lib/.build-id/8d/37128df6208c9a120ad5a3cf6a453dd2f9e844
/usr/lib/libjose.so.0
/usr/lib/libjose.so.0.0.0
/usr/share/licenses/libjose
/usr/share/licenses/libjose/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/92
/usr/lib/.build-id/92/2021e56deffbb57ee64fcdd10fcf30beeea15c
/usr/lib64/libjose.so.0
/usr/lib64/libjose.so.0.0.0
/usr/share/licenses/libjose
/usr/share/licenses/libjose/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/bcdf0cd48d54e7160f6fb827d3150cca165182
/usr/lib64/libjose.so.0
/usr/lib64/libjose.so.0.0.0
/usr/share/licenses/libjose
/usr/share/licenses/libjose/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/fd
/usr/lib/.build-id/fd/530d73bd591e48968042589c2bc422c173fdb2
/usr/lib/libjose.so.0
/usr/lib/libjose.so.0.0.0
/usr/share/licenses/libjose
/usr/share/licenses/libjose/COPYING
References
- [libjose website](https://github.com/latchset/jose https://github.com/latchset/jose)
Summary
In this tutorial we learn how to install libjose
on Fedora 34 using yum and dnf.