How To Install libdssialsacompat0 on Ubuntu 18.04

In this tutorial we learn how to install libdssialsacompat0 on Ubuntu 18.04. libdssialsacompat0 is DSSI ALSA compatibility library for non-Linux platforms

Introduction

In this tutorial we learn how to install libdssialsacompat0 on Ubuntu 18.04.

What is libdssialsacompat0

libdssialsacompat0 is:

libdssialsacompat is simply an extraction from and repackaging of the code from alsa-lib, necessary to support DSSI on non-ALSA systems.

libdssialsacompat is intended to provide the snd_seq_event_t declarations and handling code necessary to compile and use DSSI on non-ALSA systems. It aims to allows compiling DSSI code with as little change as possible, while not presenting itself in such a way as to fool other autoconf-enabled code into thinking a system has ALSA.

This library does NOT provide any sort of emulation of the ALSA audio, MIDI, or sequencer devices. The only part of ALSA that is required by the DSSI specification is the snd_seq_event_t definition and handling, and that is all libdssialsacompat is intended to replace. Other ALSA code should be ported to native facilities.

This package provides the shared library.

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

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

sudo apt-get update

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

sudo apt-get -y install libdssialsacompat0

Install libdssialsacompat0 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libdssialsacompat0 using apt by running the following command:

sudo apt -y install libdssialsacompat0

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

sudo aptitude -y install libdssialsacompat0

How To Uninstall libdssialsacompat0 on Ubuntu 18.04

To uninstall only the libdssialsacompat0 package we can use the following command:

sudo apt-get remove libdssialsacompat0

Uninstall libdssialsacompat0 And Its Dependencies

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

sudo apt-get -y autoremove libdssialsacompat0

Remove libdssialsacompat0 Configurations and Data

To remove libdssialsacompat0 configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libdssialsacompat0

Remove libdssialsacompat0 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libdssialsacompat0

References

Summary

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