How To Install libkiokudb-backend-dbi-perl on Debian 9
Introduction
In this tutorial we learn how to install libkiokudb-backend-dbi-perl on Debian 9.
What is libkiokudb-backend-dbi-perl
libkiokudb-backend-dbi-perl is:
KiokuDB::Backend::DBI is a backend for KiokuDB onto DBI-accessible databases such as PostgreSQL, MySQL and SQLite.
KiokuDB is a Moose-based object-oriented persistence frontend for a number of storage backends.
There are three methods to install libkiokudb-backend-dbi-perl on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libkiokudb-backend-dbi-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 libkiokudb-backend-dbi-perl using apt-get by running the following command:
sudo apt-get -y install libkiokudb-backend-dbi-perl
Install libkiokudb-backend-dbi-perl Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libkiokudb-backend-dbi-perl using apt by running the following command:
sudo apt -y install libkiokudb-backend-dbi-perl
Install libkiokudb-backend-dbi-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 Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install libkiokudb-backend-dbi-perl using aptitude by running the following command:
sudo aptitude -y install libkiokudb-backend-dbi-perl
How To Uninstall libkiokudb-backend-dbi-perl on Debian 9
To uninstall only the libkiokudb-backend-dbi-perl package we can use the following command:
sudo apt-get remove libkiokudb-backend-dbi-perl
Uninstall libkiokudb-backend-dbi-perl And Its Dependencies
To uninstall libkiokudb-backend-dbi-perl and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libkiokudb-backend-dbi-perl
Remove libkiokudb-backend-dbi-perl Configurations and Data
To remove libkiokudb-backend-dbi-perl configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libkiokudb-backend-dbi-perl
Remove libkiokudb-backend-dbi-perl configuration, data, and all of its dependencies
We can use the following command to remove libkiokudb-backend-dbi-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libkiokudb-backend-dbi-perl
Dependencies
libkiokudb-backend-dbi-perl have the following dependencies:
- perl
- libclass-accessor-grouped-perl
- libclass-load-perl
- libdata-stream-bulk-perl
- libdbi-perl
- libdbix-class-perl
- libjson-perl
- libkiokudb-perl
- liblist-moreutils-perl
- libmoose-perl
- libmoosex-types-perl
- libnamespace-autoclean-perl
- libnamespace-clean-perl
- libsearch-gin-perl
- libsql-abstract-perl
- libtry-tiny-perl
References
Summary
In this tutorial we learn how to install libkiokudb-backend-dbi-perl package on Debian 9 using different package management tools: apt, apt-get and aptitude.