How To Install libcgi-xmlapplication-perl on Debian 11
Introduction
In this tutorial we learn how to install libcgi-xmlapplication-perl
on Debian 11.
What is libcgi-xmlapplication-perl
libcgi-xmlapplication-perl is:
CGI::XMLApplication provides an XML-DOM and object-oriented extension to the CGI module. The XML-DOM extension allows one to generate the output from XML and laid out according to an XSLT stylesheet, separating code and presentation. The object-oriented extension allows one to specify handlers for events like a mouse click on a submit button or on an image.
There are three methods to install libcgi-xmlapplication-perl
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libcgi-xmlapplication-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 libcgi-xmlapplication-perl
using apt-get
by running the following command:
sudo apt-get -y install libcgi-xmlapplication-perl
Install libcgi-xmlapplication-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libcgi-xmlapplication-perl
using apt
by running the following command:
sudo apt -y install libcgi-xmlapplication-perl
Install libcgi-xmlapplication-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 libcgi-xmlapplication-perl
using aptitude
by running the following command:
sudo aptitude -y install libcgi-xmlapplication-perl
How To Uninstall libcgi-xmlapplication-perl on Debian 11
To uninstall only the libcgi-xmlapplication-perl
package we can use the following command:
sudo apt-get remove libcgi-xmlapplication-perl
Uninstall libcgi-xmlapplication-perl And Its Dependencies
To uninstall libcgi-xmlapplication-perl
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove libcgi-xmlapplication-perl
Remove libcgi-xmlapplication-perl Configurations and Data
To remove libcgi-xmlapplication-perl
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge libcgi-xmlapplication-perl
Remove libcgi-xmlapplication-perl configuration, data, and all of its dependencies
We can use the following command to remove libcgi-xmlapplication-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libcgi-xmlapplication-perl
Dependencies
libcgi-xmlapplication-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libcgi-xmlapplication-perl
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.