How To Install raptor2 on Rocky Linux 8
Introduction
In this tutorial we learn how to install raptor2
on Rocky Linux 8.
What is raptor2
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 raptor2
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install raptor2.
Install raptor2 on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install raptor2
using dnf
by running the following command:
sudo dnf -y install raptor2
Install raptor2 on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install raptor2
using yum
by running the following command:
sudo yum -y install raptor2
How To Uninstall raptor2 on Rocky Linux 8
To uninstall only the raptor2
package we can use the following command:
sudo dnf remove raptor2
raptor2 Package Contents on Rocky Linux 8
/usr/bin/rapper
/usr/lib/.build-id
/usr/lib/.build-id/35
/usr/lib/.build-id/35/b3f1eb4826e8b9153ae3529818c16adf36ed8f
/usr/lib/.build-id/66
/usr/lib/.build-id/66/92e9af89367b77ac5623ac1fcae8e501923a71
/usr/lib64/libraptor2.so.0
/usr/lib64/libraptor2.so.0.0.0
/usr/share/doc/raptor2
/usr/share/doc/raptor2/AUTHORS
/usr/share/doc/raptor2/COPYING
/usr/share/doc/raptor2/COPYING.LIB
/usr/share/doc/raptor2/ChangeLog
/usr/share/doc/raptor2/LICENSE-2.0.txt
/usr/share/doc/raptor2/LICENSE.txt
/usr/share/doc/raptor2/NEWS
/usr/share/doc/raptor2/README
/usr/share/man/man1/rapper.1.gz
/usr/bin/rapper
/usr/lib/.build-id
/usr/lib/.build-id/40
/usr/lib/.build-id/40/f6ac6fbdde58cc792d0be1dd2c6e1264d9f4a4
/usr/lib/.build-id/52
/usr/lib/.build-id/52/0edbedb3f0f8c2a95eb1b3e5330706cdc6b2ed
/usr/lib/libraptor2.so.0
/usr/lib/libraptor2.so.0.0.0
/usr/share/doc/raptor2
/usr/share/doc/raptor2/AUTHORS
/usr/share/doc/raptor2/COPYING
/usr/share/doc/raptor2/COPYING.LIB
/usr/share/doc/raptor2/ChangeLog
/usr/share/doc/raptor2/LICENSE-2.0.txt
/usr/share/doc/raptor2/LICENSE.txt
/usr/share/doc/raptor2/NEWS
/usr/share/doc/raptor2/README
/usr/share/man/man1/rapper.1.gz
References
Summary
In this tutorial we learn how to install raptor2
on Rocky Linux 8 using yum and dnf.