How To Install vo-amrwbenc-dbg on Ubuntu 18.04

In this tutorial we learn how to install vo-amrwbenc-dbg on Ubuntu 18.04. vo-amrwbenc-dbg is VisualOn AMR-WB encoder library (debugging symbols)

Introduction

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

What is vo-amrwbenc-dbg

vo-amrwbenc-dbg is:

This library contains an encoder implementation of the Adaptive Multi Rate Wideband (AMR-WB) audio codec. The library is based on a codec implementation by VisualOn, part of the Stagefright framework from the Google Android project.

This package contains the debugging symbols.

There are three methods to install vo-amrwbenc-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 vo-amrwbenc-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 vo-amrwbenc-dbg using apt-get by running the following command:

sudo apt-get -y install vo-amrwbenc-dbg

Install vo-amrwbenc-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install vo-amrwbenc-dbg

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

sudo aptitude -y install vo-amrwbenc-dbg

How To Uninstall vo-amrwbenc-dbg on Ubuntu 18.04

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

sudo apt-get remove vo-amrwbenc-dbg

Uninstall vo-amrwbenc-dbg And Its Dependencies

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

sudo apt-get -y autoremove vo-amrwbenc-dbg

Remove vo-amrwbenc-dbg Configurations and Data

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

sudo apt-get -y purge vo-amrwbenc-dbg

Remove vo-amrwbenc-dbg configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge vo-amrwbenc-dbg

References

Summary

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