How To Install libio-handle-util-perl on Debian 10
Introduction
In this tutorial we learn how to install libio-handle-util-perl
on Debian 10.
What is libio-handle-util-perl
libio-handle-util-perl is:
IO::Handle::Util and its copackaged modules provide various means of creating file handles from callbacks and by coercing objects. In particular IO::Handle::Prototype::Fallback allows you to define a file handle by implementing the various file handle functions as callacks. A much simpler interface is provided by IO::Handle::Iterator which reduces the callbacks that need to be defined to one.
There are three methods to install libio-handle-util-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-handle-util-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-handle-util-perl
using apt-get
by running the following command:
sudo apt-get -y install libio-handle-util-perl
Install libio-handle-util-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libio-handle-util-perl
using apt
by running the following command:
sudo apt -y install libio-handle-util-perl
Install libio-handle-util-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-handle-util-perl
using aptitude
by running the following command:
sudo aptitude -y install libio-handle-util-perl
How To Uninstall libio-handle-util-perl on Debian 10
To uninstall only the libio-handle-util-perl
package we can use the following command:
sudo apt-get remove libio-handle-util-perl
Uninstall libio-handle-util-perl And Its Dependencies
To uninstall libio-handle-util-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libio-handle-util-perl
Remove libio-handle-util-perl Configurations and Data
To remove libio-handle-util-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libio-handle-util-perl
Remove libio-handle-util-perl configuration, data, and all of its dependencies
We can use the following command to remove libio-handle-util-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libio-handle-util-perl
Dependencies
libio-handle-util-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libio-handle-util-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.