How To Install libdbix-class-schema-loader-perl on Kali Linux
Introduction
In this tutorial we learn how to install libdbix-class-schema-loader-perl
on Kali Linux.
What is libdbix-class-schema-loader-perl
libdbix-class-schema-loader-perl is:
DBIx::Class::Schema::Loader is an extension to DBIx::Class that automates the definition of a DBIx::Class::Schema by scanning table schemas and setting up columns and primary keys appropriately. It supports MySQL, PostgreSQL, SQLite and DB2.
Bare table definitions are fairly straightforward, but relationship creation is somewhat heuristic, especially with respect to choosing relationship types and names, as well as join types. The relationships generated by this module will probably never be as well-defined as hand-generated ones.
There are three methods to install libdbix-class-schema-loader-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 libdbix-class-schema-loader-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 libdbix-class-schema-loader-perl
using apt-get
by running the following command:
sudo apt-get -y install libdbix-class-schema-loader-perl
Install libdbix-class-schema-loader-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libdbix-class-schema-loader-perl
using apt
by running the following command:
sudo apt -y install libdbix-class-schema-loader-perl
Install libdbix-class-schema-loader-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 libdbix-class-schema-loader-perl
using aptitude
by running the following command:
sudo aptitude -y install libdbix-class-schema-loader-perl
How To Uninstall libdbix-class-schema-loader-perl on Kali Linux
To uninstall only the libdbix-class-schema-loader-perl
package we can use the following command:
sudo apt-get remove libdbix-class-schema-loader-perl
Uninstall libdbix-class-schema-loader-perl And Its Dependencies
To uninstall libdbix-class-schema-loader-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libdbix-class-schema-loader-perl
Remove libdbix-class-schema-loader-perl Configurations and Data
To remove libdbix-class-schema-loader-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libdbix-class-schema-loader-perl
Remove libdbix-class-schema-loader-perl configuration, data, and all of its dependencies
We can use the following command to remove libdbix-class-schema-loader-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libdbix-class-schema-loader-perl
Dependencies
libdbix-class-schema-loader-perl have the following dependencies:
- perl
- libcarp-clan-perl
- libclass-accessor-grouped-perl
- libclass-c3-componentised-perl
- libclass-inspector-perl
- libclass-unload-perl
- libconfig-any-perl
- libconfig-general-perl
- libcurry-perl
- libdata-dump-perl
- libdbix-class-perl
- libhash-merge-perl
- liblingua-en-inflect-number-perl
- liblingua-en-inflect-perl
- liblingua-en-inflect-phrase-perl
- liblingua-en-tagger-perl
- liblist-moreutils-perl
- libmoosex-markasmethods-perl
- libmro-compat-perl
- libnamespace-autoclean-perl
- libnamespace-clean-perl
- libscope-guard-perl
- libstring-toidentifier-en-perl
- libsub-name-perl
- libtry-tiny-perl
- libuniversal-require-perl
- perl
References
Summary
In this tutorial we learn how to install libdbix-class-schema-loader-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.