rdfproc command not found

In this troubleshooting guide we learn how to fix rdfproc command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

rdfproc: command not found

or when using sudo you get the following error message

sudo: rdfproc: command not found

Solutions to rdfproc: command not found

How To Fix rdfproc: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rdfproc is provided by redland-utils package.

redland-utils is:

This package provides the rdfproc utility for processing the Resource Description Framework (RDF) format using the Redland RDF library. It allows reading RDF from syntaxes, manipulating the RDF graph, querying using RDQL and SPARQL and serializing RDF into syntaxes in RDF/XML, N-Triples, Turtle and RSS 1.0.

To fix this problem, we can install more using the command below.

sudo apt-get -y install redland-utils

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install redland-utils.

sudo apt -y install redland-utils

Or if you have aptitude installed you can use the following command.

sudo aptitude install redland-utils

Summary

In this tutorial we learn how to fix rdfproc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.