How To Install libatteanx-store-ldf-perl on Ubuntu 18.04

In this tutorial we learn how to install libatteanx-store-ldf-perl on Ubuntu 18.04. libatteanx-store-ldf-perl is Linked Data Fragment RDF store

Introduction

In this tutorial we learn how to install libatteanx-store-ldf-perl on Ubuntu 18.04.

What is libatteanx-store-ldf-perl

libatteanx-store-ldf-perl is:

AtteanX::Store::LDF provides a triple-store connected to a Linked Data Fragment server.

Linked Data Fragment (LDF) is a protocol to exchange specific views of Linked Data.

Linked Data is a method of publishing structured data so that it can be interlinked and become more useful through semantic queries. It builds upon standard Web technologies such as HTTP, RDF and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers.

A triplestore or RDF store is a purpose-built database for the storage and retrieval of triples through semantic queries. A triple is a data entity composed of subject-predicate-object, like “Bob is 35” or “Bob knows Fred”.

Resource Description Framework (RDF) is a standard model for data interchange on the Web.

There are three methods to install libatteanx-store-ldf-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libatteanx-store-ldf-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 libatteanx-store-ldf-perl using apt-get by running the following command:

sudo apt-get -y install libatteanx-store-ldf-perl

Install libatteanx-store-ldf-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libatteanx-store-ldf-perl using apt by running the following command:

sudo apt -y install libatteanx-store-ldf-perl

Install libatteanx-store-ldf-perl Using aptitude

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

sudo aptitude update

After updating apt database, We can install libatteanx-store-ldf-perl using aptitude by running the following command:

sudo aptitude -y install libatteanx-store-ldf-perl

How To Uninstall libatteanx-store-ldf-perl on Ubuntu 18.04

To uninstall only the libatteanx-store-ldf-perl package we can use the following command:

sudo apt-get remove libatteanx-store-ldf-perl

Uninstall libatteanx-store-ldf-perl And Its Dependencies

To uninstall libatteanx-store-ldf-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libatteanx-store-ldf-perl

Remove libatteanx-store-ldf-perl Configurations and Data

To remove libatteanx-store-ldf-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libatteanx-store-ldf-perl

Remove libatteanx-store-ldf-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libatteanx-store-ldf-perl

References

Summary

In this tutorial we learn how to install libatteanx-store-ldf-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.