How To Install sord on Fedora 34
Introduction
In this tutorial we learn how to install sord
on Fedora 34.
What is sord
A lightweight Resource Description Framework (RDF) C library http ISC sord is a lightweight C library for storing Resource Description Framework (RDF) data in memory. sord and parent library serd form a lightweight RDF tool-set for resource limited or performance critical applications. sord 0.16.6 2.fc34 x86_64 45 k sord-0.16.6-2.fc34.src.rpm fedora A lightweight Resource Description Framework (RDF) C library http ISC sord is a lightweight C library for storing Resource Description Framework (RDF) data in memory. sord and parent library serd form a lightweight RDF tool-set for resource limited or performance critical applications.
We can use yum
or dnf
to install sord
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install sord.
Install sord 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 sord
using dnf
by running the following command:
sudo dnf -y install sord
Install sord 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 sord
using yum
by running the following command:
sudo yum -y install sord
How To Uninstall sord on Fedora 34
To uninstall only the sord
package we can use the following command:
sudo dnf remove sord
sord Package Contents on Fedora 34
/usr/bin/sord_validate
/usr/bin/sordi
/usr/lib/.build-id
/usr/lib/.build-id/60
/usr/lib/.build-id/60/05b7bb6aa2f5b1ce3b55e08400f07a0f801737
/usr/lib/.build-id/97
/usr/lib/.build-id/97/a4ace23b3b399a7607f9d03bdd81302c7f9582
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/507956c39a1c4bceffceb9d8629a81ebf246c9
/usr/lib/libsord-0.so.0
/usr/lib/libsord-0.so.0.16.6
/usr/share/doc/sord
/usr/share/doc/sord/AUTHORS
/usr/share/doc/sord/NEWS
/usr/share/doc/sord/README.md
/usr/share/licenses/sord
/usr/share/licenses/sord/COPYING
/usr/share/man/man1/sord_validate.1.gz
/usr/share/man/man1/sordi.1.gz
/usr/bin/sord_validate
/usr/bin/sordi
/usr/lib/.build-id
/usr/lib/.build-id/6b
/usr/lib/.build-id/6b/7e01e18d8e4c92bfa30f3804120b03c0009c87
/usr/lib/.build-id/a0
/usr/lib/.build-id/a0/73a13ab2d46f0ed2d56e1b02b6c1c7781e5fea
/usr/lib/.build-id/a2
/usr/lib/.build-id/a2/14ed106633ded22bd7c8ee5e73464ac76cf829
/usr/lib64/libsord-0.so.0
/usr/lib64/libsord-0.so.0.16.6
/usr/share/doc/sord
/usr/share/doc/sord/AUTHORS
/usr/share/doc/sord/NEWS
/usr/share/doc/sord/README.md
/usr/share/licenses/sord
/usr/share/licenses/sord/COPYING
/usr/share/man/man1/sord_validate.1.gz
/usr/share/man/man1/sordi.1.gz
References
- [sord website](http://drobilla.net/software/sord/ http://drobilla.net/software/sord/)
Summary
In this tutorial we learn how to install sord
on Fedora 34 using yum and dnf.