How To Install jackeq on Ubuntu 18.04
Introduction
In this tutorial we learn how to install jackeq on Ubuntu 18.04.
What is jackeq
jackeq is:
jackEQ is a tool for routing and manipulating audio from/to multiple input/output sources. It runs in the JACK Audio Connection Kit, and uses LADSPA for its backend DSP work, specifically the DJ EQ swh plugin created by Steve Harris, one of jackEQ’s main authors.
jackEQ is intended to provide an accessible method for tweaking the treble, mid and bass of any JACK aware applications output. Designed specifically for live performance, it is modelled on various DJ mixing consoles which the main author has used.
jackEQ wll allow sound as rich and powerful as Jackie O, as street smart as Jackie Brown. jackEQ may be the first female entity in JACKs realm. Is jackEQ more than you can handle?
There are three methods to install jackeq 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 jackeq Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install jackeq using apt-get by running the following command:
sudo apt-get -y install jackeq
Install jackeq Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install jackeq using apt by running the following command:
sudo apt -y install jackeq
Install jackeq 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 jackeq using aptitude by running the following command:
sudo aptitude -y install jackeq
How To Uninstall jackeq on Ubuntu 18.04
To uninstall only the jackeq package we can use the following command:
sudo apt-get remove jackeq
Uninstall jackeq And Its Dependencies
To uninstall jackeq and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove jackeq
Remove jackeq Configurations and Data
To remove jackeq configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge jackeq
Remove jackeq configuration, data, and all of its dependencies
We can use the following command to remove jackeq configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge jackeq
References
Summary
In this tutorial we learn how to install jackeq package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.