How To Install libpoe-component-client-mpd-perl on Debian 9
Introduction
In this tutorial we learn how to install libpoe-component-client-mpd-perl
on Debian 9.
What is libpoe-component-client-mpd-perl
libpoe-component-client-mpd-perl is:
POE::Component::Client::MPD is a Perl POE component module that provides a clear message passing interface for talking to and controlling Music Player Daemon (MPD) servers. A connection to the MPD server is established as soon as a new object is created. Commands are then sent to the server as messages are passed.
There are three methods to install libpoe-component-client-mpd-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 libpoe-component-client-mpd-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-component-client-mpd-perl
using apt-get
by running the following command:
sudo apt-get -y install libpoe-component-client-mpd-perl
Install libpoe-component-client-mpd-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libpoe-component-client-mpd-perl
using apt
by running the following command:
sudo apt -y install libpoe-component-client-mpd-perl
Install libpoe-component-client-mpd-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-component-client-mpd-perl
using aptitude
by running the following command:
sudo aptitude -y install libpoe-component-client-mpd-perl
How To Uninstall libpoe-component-client-mpd-perl on Debian 9
To uninstall only the libpoe-component-client-mpd-perl
package we can use the following command:
sudo apt-get remove libpoe-component-client-mpd-perl
Uninstall libpoe-component-client-mpd-perl And Its Dependencies
To uninstall libpoe-component-client-mpd-perl
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libpoe-component-client-mpd-perl
Remove libpoe-component-client-mpd-perl Configurations and Data
To remove libpoe-component-client-mpd-perl
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libpoe-component-client-mpd-perl
Remove libpoe-component-client-mpd-perl configuration, data, and all of its dependencies
We can use the following command to remove libpoe-component-client-mpd-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libpoe-component-client-mpd-perl
Dependencies
libpoe-component-client-mpd-perl have the following dependencies:
- perl
- libaudio-mpd-common-perl
- liblist-allutils-perl
- libmoose-perl
- libmoosex-has-sugar-perl
- libmoosex-poe-perl
- libmoosex-semiaffordanceaccessor-perl
- libmoosex-types-perl
- libpoe-perl
- libreadonly-perl
- libsub-exporter-perl
References
Summary
In this tutorial we learn how to install libpoe-component-client-mpd-perl
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.