How To Install phasex-dbg on Ubuntu 18.04

In this tutorial we learn how to install phasex-dbg on Ubuntu 18.04. phasex-dbg is Debugging symbols for PHASEX

Introduction

In this tutorial we learn how to install phasex-dbg on Ubuntu 18.04.

What is phasex-dbg

phasex-dbg is:

PHASEX is an experimental JACK audio / ALSA MIDI softsynth for Linux with a synth engine built around flexible phase modulation and flexible oscillator/LFO sourcing.

This package contains the debugging symbols.

There are three methods to install phasex-dbg 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 phasex-dbg Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install phasex-dbg using apt-get by running the following command:

sudo apt-get -y install phasex-dbg

Install phasex-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install phasex-dbg using apt by running the following command:

sudo apt -y install phasex-dbg

Install phasex-dbg 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 phasex-dbg using aptitude by running the following command:

sudo aptitude -y install phasex-dbg

How To Uninstall phasex-dbg on Ubuntu 18.04

To uninstall only the phasex-dbg package we can use the following command:

sudo apt-get remove phasex-dbg

Uninstall phasex-dbg And Its Dependencies

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

sudo apt-get -y autoremove phasex-dbg

Remove phasex-dbg Configurations and Data

To remove phasex-dbg configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge phasex-dbg

Remove phasex-dbg configuration, data, and all of its dependencies

We can use the following command to remove phasex-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge phasex-dbg

References

Summary

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