How To Install libcmtspeechdata-doc on Ubuntu 18.04

In this tutorial we learn how to install libcmtspeechdata-doc on Ubuntu 18.04. libcmtspeechdata-doc is modem speech data handling library (documentation)

Introduction

In this tutorial we learn how to install libcmtspeechdata-doc on Ubuntu 18.04.

What is libcmtspeechdata-doc

libcmtspeechdata-doc is:

libcmtspeechdata is the userspace side for Nokia’s CMT Speech Data SSI protocol. The library provides an application interface for implementing the speech data path for cellular voice calls. IT does not contain any functionality for setting up and managing the call signaling path.

The library will access the hardware using /dev/cmt_speech.

This package contains the shared library’s documentation files.

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

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

sudo apt-get update

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

sudo apt-get -y install libcmtspeechdata-doc

Install libcmtspeechdata-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcmtspeechdata-doc

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

sudo aptitude -y install libcmtspeechdata-doc

How To Uninstall libcmtspeechdata-doc on Ubuntu 18.04

To uninstall only the libcmtspeechdata-doc package we can use the following command:

sudo apt-get remove libcmtspeechdata-doc

Uninstall libcmtspeechdata-doc And Its Dependencies

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

sudo apt-get -y autoremove libcmtspeechdata-doc

Remove libcmtspeechdata-doc Configurations and Data

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

sudo apt-get -y purge libcmtspeechdata-doc

Remove libcmtspeechdata-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcmtspeechdata-doc

References

Summary

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