How To Install libmediastreamer-voip10 on Ubuntu 20.04

In this tutorial we learn how to install libmediastreamer-voip10 on Ubuntu 20.04. libmediastreamer-voip10 is Voice and video streaming engine for telephony (voip)

Introduction

In this tutorial we learn how to install libmediastreamer-voip10 on Ubuntu 20.04.

What is libmediastreamer-voip10

libmediastreamer-voip10 is:

Mediastreamer2 is a powerful and lightweight streaming engine specially designed for voice/video telephony applications.

This open source library is responsible for all receiving and sending of multimedia streams in Linphone, including voice/video capture, encoding, decoding, and rendering.

This package contains the voip library.

There are three methods to install libmediastreamer-voip10 on Ubuntu 20.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 libmediastreamer-voip10 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libmediastreamer-voip10

Install libmediastreamer-voip10 Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libmediastreamer-voip10

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

sudo aptitude -y install libmediastreamer-voip10

How To Uninstall libmediastreamer-voip10 on Ubuntu 20.04

To uninstall only the libmediastreamer-voip10 package we can use the following command:

sudo apt-get remove libmediastreamer-voip10

Uninstall libmediastreamer-voip10 And Its Dependencies

To uninstall libmediastreamer-voip10 and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libmediastreamer-voip10

Remove libmediastreamer-voip10 Configurations and Data

To remove libmediastreamer-voip10 configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libmediastreamer-voip10

Remove libmediastreamer-voip10 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libmediastreamer-voip10

References

Summary

In this tutorial we learn how to install libmediastreamer-voip10 package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.