How To Install raptor on Fedora 34
Introduction
In this tutorial we learn how to install raptor
on Fedora 34.
What is raptor
Raptor is the RDF Parser Toolkit for Redland that provides a set of standalone RDF parsers, generating triples from RDF/XML or N-Triples. raptor 1.4.21 34.fc34 x86_64 250 k raptor-1.4.21-34.fc34.src.rpm fedora Raptor RDF Parser Toolkit for Redland http LGPLv2+ or ASL 2.0 Raptor is the RDF Parser Toolkit for Redland that provides a set of standalone RDF parsers, generating triples from RDF/XML or N-Triples.
We can use yum
or dnf
to install raptor
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install raptor.
Install raptor 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 raptor
using dnf
by running the following command:
sudo dnf -y install raptor
Install raptor 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 raptor
using yum
by running the following command:
sudo yum -y install raptor
How To Uninstall raptor on Fedora 34
To uninstall only the raptor
package we can use the following command:
sudo dnf remove raptor
raptor Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/49
/usr/lib/.build-id/49/22a7f8a27f38b16df510d11fc5f9b37c620205
/usr/lib/libraptor.so.1
/usr/lib/libraptor.so.1.2.0
/usr/share/doc/raptor
/usr/share/doc/raptor/AUTHORS
/usr/share/doc/raptor/COPYING
/usr/share/doc/raptor/COPYING.LIB
/usr/share/doc/raptor/ChangeLog
/usr/share/doc/raptor/LICENSE-2.0.txt
/usr/share/doc/raptor/LICENSE.html
/usr/share/doc/raptor/LICENSE.txt
/usr/share/doc/raptor/NEWS
/usr/share/doc/raptor/NEWS.html
/usr/share/doc/raptor/NOTICE
/usr/share/doc/raptor/README
/usr/share/doc/raptor/README.html
/usr/share/doc/raptor/RELEASE.html
/usr/lib/.build-id
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/2358714a52af2b72500ab59e603df30428be17
/usr/lib64/libraptor.so.1
/usr/lib64/libraptor.so.1.2.0
/usr/share/doc/raptor
/usr/share/doc/raptor/AUTHORS
/usr/share/doc/raptor/COPYING
/usr/share/doc/raptor/COPYING.LIB
/usr/share/doc/raptor/ChangeLog
/usr/share/doc/raptor/LICENSE-2.0.txt
/usr/share/doc/raptor/LICENSE.html
/usr/share/doc/raptor/LICENSE.txt
/usr/share/doc/raptor/NEWS
/usr/share/doc/raptor/NEWS.html
/usr/share/doc/raptor/NOTICE
/usr/share/doc/raptor/README
/usr/share/doc/raptor/README.html
/usr/share/doc/raptor/RELEASE.html
References
- [raptor website](http://librdf.org/raptor/ http://librdf.org/raptor/)
Summary
In this tutorial we learn how to install raptor
on Fedora 34 using yum and dnf.