How To Install libmojolicious-plugin-cgi-perl on Debian 12
Introduction
In this tutorial we learn how to install libmojolicious-plugin-cgi-perl
on Debian 12.
What is libmojolicious-plugin-cgi-perl
libmojolicious-plugin-cgi-perl is:
Mojolicious::Plugin::CGI plugin enables Mojolicious to run Perl CGI scripts. It does so by forking a new process with a modified environment and reads the STDOUT in a non-blocking manner.
There are three methods to install libmojolicious-plugin-cgi-perl
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libmojolicious-plugin-cgi-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 libmojolicious-plugin-cgi-perl
using apt-get
by running the following command:
sudo apt-get -y install libmojolicious-plugin-cgi-perl
Install libmojolicious-plugin-cgi-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmojolicious-plugin-cgi-perl
using apt
by running the following command:
sudo apt -y install libmojolicious-plugin-cgi-perl
Install libmojolicious-plugin-cgi-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 libmojolicious-plugin-cgi-perl
using aptitude
by running the following command:
sudo aptitude -y install libmojolicious-plugin-cgi-perl
How To Uninstall libmojolicious-plugin-cgi-perl on Debian 12
To uninstall only the libmojolicious-plugin-cgi-perl
package we can use the following command:
sudo apt-get remove libmojolicious-plugin-cgi-perl
Uninstall libmojolicious-plugin-cgi-perl And Its Dependencies
To uninstall libmojolicious-plugin-cgi-perl
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove libmojolicious-plugin-cgi-perl
Remove libmojolicious-plugin-cgi-perl Configurations and Data
To remove libmojolicious-plugin-cgi-perl
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge libmojolicious-plugin-cgi-perl
Remove libmojolicious-plugin-cgi-perl configuration, data, and all of its dependencies
We can use the following command to remove libmojolicious-plugin-cgi-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmojolicious-plugin-cgi-perl
Dependencies
libmojolicious-plugin-cgi-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmojolicious-plugin-cgi-perl
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.