How To Install libio-stringy-perl on Debian 9
Introduction
In this tutorial we learn how to install libio-stringy-perl on Debian 9.
What is libio-stringy-perl
libio-stringy-perl is:
The libio-stringy-perl package (which corresponds to the CPAN package IO-stringy) provides the following Perl modules: IO::AtomicFile Write a file which is updated atomically IO::Lines I/O handle to read/write to array of lines IO::Scalar I/O handle to read/write to a string IO::ScalarArray I/O handle to read/write to array of scalars IO::Wrap Wrap old-style FHs in standard OO interface IO::WrapTie Tie your handles & retain full OO interface
There are three methods to install libio-stringy-perl on Debian 9. 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-stringy-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-stringy-perl using apt-get by running the following command:
sudo apt-get -y install libio-stringy-perl
Install libio-stringy-perl Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libio-stringy-perl using apt by running the following command:
sudo apt -y install libio-stringy-perl
Install libio-stringy-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-stringy-perl using aptitude by running the following command:
sudo aptitude -y install libio-stringy-perl
How To Uninstall libio-stringy-perl on Debian 9
To uninstall only the libio-stringy-perl package we can use the following command:
sudo apt-get remove libio-stringy-perl
Uninstall libio-stringy-perl And Its Dependencies
To uninstall libio-stringy-perl and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libio-stringy-perl
Remove libio-stringy-perl Configurations and Data
To remove libio-stringy-perl configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libio-stringy-perl
Remove libio-stringy-perl configuration, data, and all of its dependencies
We can use the following command to remove libio-stringy-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libio-stringy-perl
Dependencies
libio-stringy-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libio-stringy-perl package on Debian 9 using different package management tools: apt, apt-get and aptitude.