How To Install libio-callback-perl on Debian 10
Introduction
In this tutorial we learn how to install libio-callback-perl
on Debian 10.
What is libio-callback-perl
libio-callback-perl is:
IO::Callback provides an easy way to produce a phoney read-only filehandle that calls back to your own code when it needs data to satisfy a read. This is useful if you want to use a library module that expects to read data from a filehandle, but you want the data to come from some other source and you don’t want to read it all into memory and use IO::String.
There are three methods to install libio-callback-perl
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libio-callback-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 libio-callback-perl
using apt-get
by running the following command:
sudo apt-get -y install libio-callback-perl
Install libio-callback-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libio-callback-perl
using apt
by running the following command:
sudo apt -y install libio-callback-perl
Install libio-callback-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 libio-callback-perl
using aptitude
by running the following command:
sudo aptitude -y install libio-callback-perl
How To Uninstall libio-callback-perl on Debian 10
To uninstall only the libio-callback-perl
package we can use the following command:
sudo apt-get remove libio-callback-perl
Uninstall libio-callback-perl And Its Dependencies
To uninstall libio-callback-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libio-callback-perl
Remove libio-callback-perl Configurations and Data
To remove libio-callback-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libio-callback-perl
Remove libio-callback-perl configuration, data, and all of its dependencies
We can use the following command to remove libio-callback-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libio-callback-perl
Dependencies
libio-callback-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libio-callback-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.