How To Install libattean-perl on Kali Linux
Introduction
In this tutorial we learn how to install libattean-perl on Kali Linux.
What is libattean-perl
libattean-perl is:
Attean is a Perl framework for working with RDF data and SPARQL queries. It features parsers and serializers for many different RDF formats including RDF/XML, Turtle, N-Triples and N-Quads, as well as SPARQL formats like SPARQL-XML, SPARQL-JSON, SPARQL-CSV and SPARQL-TSV.
Attean features support for SPARQL 1.1 queries, and a set of APIs and command line tools to parse, transform, query, and serialize RDF data.
SPARQL is an RDF query language, that is, a semantic query language for databases, able to retrieve and manipulate data stored in Resource Description Framework format.
Resource Description Framework (RDF) is a standard model for data interchange on the Web.
Some modules require additional packages:
- Test::Attean::* require the packages libmoose-perl libtest-roo-perl.
- Test::Attean::SPARQLSuite instead requires the packages libtest-roo-perl libtest-modern-perl.
There are three methods to install libattean-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 libattean-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libattean-perl using apt-get by running the following command:
sudo apt-get -y install libattean-perlInstall libattean-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libattean-perl using apt by running the following command:
sudo apt -y install libattean-perlInstall libattean-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 updateAfter updating apt database, We can install libattean-perl using aptitude by running the following command:
sudo aptitude -y install libattean-perlHow To Uninstall libattean-perl on Kali Linux
To uninstall only the libattean-perl package we can use the following command:
sudo apt-get remove libattean-perlUninstall libattean-perl And Its Dependencies
To uninstall libattean-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libattean-perlRemove libattean-perl Configurations and Data
To remove libattean-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libattean-perlRemove libattean-perl configuration, data, and all of its dependencies
We can use the following command to remove libattean-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libattean-perlDependencies
libattean-perl have the following dependencies:
- libdatetime-format-w3cdtf-perl
- libexporter-tiny-perl
- libfile-slurp-perl
- libhttp-negotiate-perl
- libiri-perl
- libjson-perl
- liblist-moreutils-perl
- libmath-cartesian-product-perl
- libmodule-pluggable-perl
- libmoo-perl
- libmoox-log-any-perl
- libnamespace-clean-perl
- libperlio-layers-perl
- librole-tiny-perl
- libscalar-list-utils-perl
- libset-scalar-perl
- libsub-install-perl
- libtext-csv-perl
- libtext-table-perl
- libtry-tiny-perl
- libtype-tiny-perl
- liburi-namespacemap-perl
- liburi-perl
- libuuid-tiny-perl
- libwww-perl
- libxml-sax-perl
- perl
References
Summary
In this tutorial we learn how to install libattean-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.