How To Install libvo-amrwbenc-dev on Kali Linux

In this tutorial we learn how to install libvo-amrwbenc-dev on Kali Linux. libvo-amrwbenc-dev is VisualOn AMR-WB encoder library (development files)

Introduction

In this tutorial we learn how to install libvo-amrwbenc-dev on Kali Linux.

What is libvo-amrwbenc-dev

libvo-amrwbenc-dev 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.

There are three methods to install libvo-amrwbenc-dev on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libvo-amrwbenc-dev Using apt-get

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

sudo apt-get update

After updating apt database, We can install libvo-amrwbenc-dev using apt-get by running the following command:

sudo apt-get -y install libvo-amrwbenc-dev

Install libvo-amrwbenc-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libvo-amrwbenc-dev

Install libvo-amrwbenc-dev Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libvo-amrwbenc-dev using aptitude by running the following command:

sudo aptitude -y install libvo-amrwbenc-dev

How To Uninstall libvo-amrwbenc-dev on Kali Linux

To uninstall only the libvo-amrwbenc-dev package we can use the following command:

sudo apt-get remove libvo-amrwbenc-dev

Uninstall libvo-amrwbenc-dev And Its Dependencies

To uninstall libvo-amrwbenc-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libvo-amrwbenc-dev

Remove libvo-amrwbenc-dev Configurations and Data

To remove libvo-amrwbenc-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libvo-amrwbenc-dev

Remove libvo-amrwbenc-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libvo-amrwbenc-dev

Dependencies

libvo-amrwbenc-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libvo-amrwbenc-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.