How To Install redland on Rocky Linux 8
Introduction
In this tutorial we learn how to install redland
on Rocky Linux 8.
What is redland
Redland is a library that provides a high-level interface for RDF (Resource Description Framework) implemented in an object-based API. It is modular and supports different RDF/XML parsers, storage mechanisms and other elements. Redland is designed for applications developers to provide RDF support in their applications as well as for RDF developers to experiment with the technology.
We can use yum
or dnf
to install redland
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install redland.
Install redland 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 redland
using dnf
by running the following command:
sudo dnf -y install redland
Install redland 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 redland
using yum
by running the following command:
sudo yum -y install redland
How To Uninstall redland on Rocky Linux 8
To uninstall only the redland
package we can use the following command:
sudo dnf remove redland
redland Package Contents on Rocky Linux 8
/usr/bin/rdfproc
/usr/bin/redland-db-upgrade
/usr/lib/.build-id
/usr/lib/.build-id/3c
/usr/lib/.build-id/3c/a69e4b3c42ceed10e44297e1dfc234fea30002
/usr/lib/.build-id/3c/b02c9c67c4da24428ddd3b960e3949d84478d5
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/88e6de5c2d597d97f3ad487b838fb892b4592f
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/0a787f8bb88cb8ecddbb4e6782ba6cd9ec16d2
/usr/lib/librdf.so.0
/usr/lib/librdf.so.0.0.0
/usr/lib/redland
/usr/lib/redland/librdf_storage_sqlite.so
/usr/share/doc/redland
/usr/share/doc/redland/AUTHORS
/usr/share/doc/redland/FAQS.html
/usr/share/doc/redland/LICENSE.html
/usr/share/doc/redland/NEWS
/usr/share/doc/redland/NEWS.html
/usr/share/doc/redland/NOTICE
/usr/share/doc/redland/README
/usr/share/doc/redland/README.html
/usr/share/doc/redland/TODO
/usr/share/doc/redland/TODO.html
/usr/share/licenses/redland
/usr/share/licenses/redland/COPYING
/usr/share/licenses/redland/COPYING.LIB
/usr/share/licenses/redland/LICENSE-2.0.txt
/usr/share/licenses/redland/LICENSE.txt
/usr/share/man/man1/rdfproc.1.gz
/usr/share/man/man1/redland-db-upgrade.1.gz
/usr/share/man/man3/redland.3.gz
/usr/share/redland
/usr/share/redland/mysql-v1.ttl
/usr/share/redland/mysql-v2.ttl
/usr/bin/rdfproc
/usr/bin/redland-db-upgrade
/usr/lib/.build-id
/usr/lib/.build-id/8f
/usr/lib/.build-id/8f/bf1558b577bdd891b91c41fb2bfeb0f9ad8292
/usr/lib/.build-id/c4
/usr/lib/.build-id/c4/f71dcf54516ea96195009bd6cedd8f6520c6cb
/usr/lib/.build-id/d0
/usr/lib/.build-id/d0/6ecdee3f6c3d8e448433e3ccd05b2bea9b16f5
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/9e5657ac2edd75c74ace5193a4b56e7c43ddc2
/usr/lib64/librdf.so.0
/usr/lib64/librdf.so.0.0.0
/usr/lib64/redland
/usr/lib64/redland/librdf_storage_sqlite.so
/usr/share/doc/redland
/usr/share/doc/redland/AUTHORS
/usr/share/doc/redland/FAQS.html
/usr/share/doc/redland/LICENSE.html
/usr/share/doc/redland/NEWS
/usr/share/doc/redland/NEWS.html
/usr/share/doc/redland/NOTICE
/usr/share/doc/redland/README
/usr/share/doc/redland/README.html
/usr/share/doc/redland/TODO
/usr/share/doc/redland/TODO.html
/usr/share/licenses/redland
/usr/share/licenses/redland/COPYING
/usr/share/licenses/redland/COPYING.LIB
/usr/share/licenses/redland/LICENSE-2.0.txt
/usr/share/licenses/redland/LICENSE.txt
/usr/share/man/man1/rdfproc.1.gz
/usr/share/man/man1/redland-db-upgrade.1.gz
/usr/share/man/man3/redland.3.gz
/usr/share/redland
/usr/share/redland/mysql-v1.ttl
/usr/share/redland/mysql-v2.ttl
References
Summary
In this tutorial we learn how to install redland
on Rocky Linux 8 using yum and dnf.