PulseAudio Equalizer is an open-source audio equalizer for manipulating and enhancing sound on Linux systems. It allows fine-tuned control over audio frequencies to customize the listening experience. Here is a step-by-step guide on installing and configuring PulseAudio Equalizer on Linux Mint.
Installing PulseAudio Equalizer
There are two methods to install PulseAudio Equalizer on Linux Mint:
Method 1: Install from Standard Repositories
PulseAudio Equalizer is available in the standard Linux Mint repositories. To install:
- Open the terminal and update the package index:
sudo apt update
- Install the pulseaudio-equalizer package:
sudo apt install pulseaudio-equalizer
Method 2: Install from PPA Repository
An updated version of PulseAudio Equalizer is available via a PPA repository. To install:
- Add the WebUpd8 PPA repository:
sudo add-apt-repository ppa:nilarimogard/webupd8
- Update the package index:
sudo apt update
- Install the pulseaudio-equalizer package:
sudo apt install pulseaudio-equalizer
The PPA repository contains a newer version, but the standard repository version should also work fine.
Launching and Configuring PulseAudio Equalizer
Once installed via either method, launch PulseAudio Equalizer by typing:
qpaeq
This opens up the graphical equalizer interface. Some key things you can configure:
- Switch between presets (or create your own) using the dropdown menu
- Enable/disable bands using the power buttons
- Adjust levels by dragging band sliders up/down
- Change L/R balance with the stereo balance slider
- Enable bass boost for amplified low frequencies
- Load/save presets for future use
Additionally, the configuration file is located at ~/.config/pulse/equalizerrc. You can manually edit it as well.
That covers the basics of installing and configuring PulseAudio Equalizer to get up and running on Linux Mint! Let me know if you have any other questions.


