How To Install librdf-ns-perl on Kali Linux

In this tutorial we learn how to install librdf-ns-perl on Kali Linux. librdf-ns-perl is just use popular RDF namespace prefixes from prefix.cc

Introduction

In this tutorial we learn how to install librdf-ns-perl on Kali Linux.

What is librdf-ns-perl

librdf-ns-perl is:

Hardcoding URI namespaces and prefixes for RDF applications is neither fun nor maintainable. In the end we all use more or less the same prefix definitions, as collected at http://prefix.cc. RDF::NS includes all these prefixes as defined at specific snapshots in time. These snapshots correspond to version numbers of this module. By selecting particular versions, you make sure that changes at prefix.cc won’t affect your scripts.

There are three methods to install librdf-ns-perl on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install librdf-ns-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install librdf-ns-perl using apt-get by running the following command:

sudo apt-get -y install librdf-ns-perl

Install librdf-ns-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install librdf-ns-perl using apt by running the following command:

sudo apt -y install librdf-ns-perl

Install librdf-ns-perl Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install librdf-ns-perl using aptitude by running the following command:

sudo aptitude -y install librdf-ns-perl

How To Uninstall librdf-ns-perl on Kali Linux

To uninstall only the librdf-ns-perl package we can use the following command:

sudo apt-get remove librdf-ns-perl

Uninstall librdf-ns-perl And Its Dependencies

To uninstall librdf-ns-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove librdf-ns-perl

Remove librdf-ns-perl Configurations and Data

To remove librdf-ns-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge librdf-ns-perl

Remove librdf-ns-perl configuration, data, and all of its dependencies

We can use the following command to remove librdf-ns-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge librdf-ns-perl

Dependencies

librdf-ns-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install librdf-ns-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.