How To Install serd on Fedora 34

serd is A lightweight C library for RDF syntax A lightweight C library for RDF syntax

Introduction

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

What is serd

serd is a lightweight C library for RDF syntax which supports reading and writing Turtle, TRiG, NTriples, and NQuads. Serd is suitable for performance-critical or resource-limited applications, such as serialising very large data sets, network protocols, or embedded systems that require minimal dependencies and lightweight deployment. serd 0.30.10 2.fc34 x86_64 62 k serd-0.30.10-2.fc34.src.rpm fedora A lightweight C library for RDF syntax http ISC serd is a lightweight C library for RDF syntax which supports reading and writing Turtle, TRiG, NTriples, and NQuads. Serd is suitable for performance-critical or resource-limited applications, such as serialising very large data sets, network protocols, or embedded systems that require minimal dependencies and lightweight deployment.

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

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

sudo dnf -y install serd

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

sudo yum -y install serd

How To Uninstall serd on Fedora 34

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

sudo dnf remove serd

serd Package Contents on Fedora 34

/usr/bin/serdi
/usr/lib/.build-id
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/41c915274a06ba3f096f00e524d585fff1fcb0
/usr/lib/.build-id/f6
/usr/lib/.build-id/f6/1976c31662ade0d4b653b3fa89951385a69cc7
/usr/lib/libserd-0.so.0
/usr/lib/libserd-0.so.0.30.10
/usr/share/doc/serd
/usr/share/doc/serd/AUTHORS
/usr/share/doc/serd/NEWS
/usr/share/doc/serd/README.md
/usr/share/licenses/serd
/usr/share/licenses/serd/COPYING
/usr/share/man/man1/serdi.1.gz
/usr/bin/serdi
/usr/lib/.build-id
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/48cde9173f4557d04e4c01ec909d8ec46ee942
/usr/lib/.build-id/a7
/usr/lib/.build-id/a7/19eae1f7f75e166f87902b80b53349e0b67840
/usr/lib64/libserd-0.so.0
/usr/lib64/libserd-0.so.0.30.10
/usr/share/doc/serd
/usr/share/doc/serd/AUTHORS
/usr/share/doc/serd/NEWS
/usr/share/doc/serd/README.md
/usr/share/licenses/serd
/usr/share/licenses/serd/COPYING
/usr/share/man/man1/serdi.1.gz

References

Summary

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