How To Install libaudio-ecasound-perl on Ubuntu 18.04

In this tutorial we learn how to install libaudio-ecasound-perl on Ubuntu 18.04. libaudio-ecasound-perl is Perl binding to the ecasound sampler, recorder, fx-processor

Introduction

In this tutorial we learn how to install libaudio-ecasound-perl on Ubuntu 18.04.

What is libaudio-ecasound-perl

libaudio-ecasound-perl is:

Audio::Ecasound provides perl bindings to the ecasound control interface of the ecasound program. You can use perl to automate or interact with ecasound so you don’t have to turn you back on the adoring masses packed into Wembly Stadium.

Ecasound is a software package designed for multitrack audio processing. It can be used for audio playback, recording, format conversions, effects processing, mixing, as a LADSPA plugin host and JACK node. Version >= 2.2.X must be installed to use this package. SEE ALSO for more info.

There are three methods to install libaudio-ecasound-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libaudio-ecasound-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 libaudio-ecasound-perl using apt-get by running the following command:

sudo apt-get -y install libaudio-ecasound-perl

Install libaudio-ecasound-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libaudio-ecasound-perl using apt by running the following command:

sudo apt -y install libaudio-ecasound-perl

Install libaudio-ecasound-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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libaudio-ecasound-perl using aptitude by running the following command:

sudo aptitude -y install libaudio-ecasound-perl

How To Uninstall libaudio-ecasound-perl on Ubuntu 18.04

To uninstall only the libaudio-ecasound-perl package we can use the following command:

sudo apt-get remove libaudio-ecasound-perl

Uninstall libaudio-ecasound-perl And Its Dependencies

To uninstall libaudio-ecasound-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libaudio-ecasound-perl

Remove libaudio-ecasound-perl Configurations and Data

To remove libaudio-ecasound-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libaudio-ecasound-perl

Remove libaudio-ecasound-perl configuration, data, and all of its dependencies

We can use the following command to remove libaudio-ecasound-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libaudio-ecasound-perl

References

Summary

In this tutorial we learn how to install libaudio-ecasound-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.