How To Install libpoe-filter-ssl-perl on Debian 11
Introduction
In this tutorial we learn how to install libpoe-filter-ssl-perl
on Debian 11.
What is libpoe-filter-ssl-perl
libpoe-filter-ssl-perl is:
POE::Filter::SSL allows one to secure connections of POE::Wheel::ReadWrite with OpenSSL by a POE::Filter object, and behaves (beside of SSLing) as POE::Filter::Stream.
POE::Filter::SSL can be added, switched and removed during runtime, for example if you want to initiate SSL (see the SSL on an established connection example in SYNOPSIS) on an already established connection. You are able to combine POE::Filter::SSL with other filters, for example have a HTTPS server together with POE::Filter::HTTPD.
POE::Filter::SSL is based on Net::SSLeay, but got two XS functions which Net::SSLeay is missing.
There are three methods to install libpoe-filter-ssl-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 libpoe-filter-ssl-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 libpoe-filter-ssl-perl
using apt-get
by running the following command:
sudo apt-get -y install libpoe-filter-ssl-perl
Install libpoe-filter-ssl-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libpoe-filter-ssl-perl
using apt
by running the following command:
sudo apt -y install libpoe-filter-ssl-perl
Install libpoe-filter-ssl-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 libpoe-filter-ssl-perl
using aptitude
by running the following command:
sudo aptitude -y install libpoe-filter-ssl-perl
How To Uninstall libpoe-filter-ssl-perl on Debian 11
To uninstall only the libpoe-filter-ssl-perl
package we can use the following command:
sudo apt-get remove libpoe-filter-ssl-perl
Uninstall libpoe-filter-ssl-perl And Its Dependencies
To uninstall libpoe-filter-ssl-perl
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove libpoe-filter-ssl-perl
Remove libpoe-filter-ssl-perl Configurations and Data
To remove libpoe-filter-ssl-perl
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge libpoe-filter-ssl-perl
Remove libpoe-filter-ssl-perl configuration, data, and all of its dependencies
We can use the following command to remove libpoe-filter-ssl-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libpoe-filter-ssl-perl
Dependencies
libpoe-filter-ssl-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libpoe-filter-ssl-perl
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.