How To Install libmono-debugging-soft-cil on Ubuntu 18.04

In this tutorial we learn how to install libmono-debugging-soft-cil on Ubuntu 18.04. libmono-debugging-soft-cil is Mono soft debugger interface libraries - Mono.Debugging backend

Introduction

In this tutorial we learn how to install libmono-debugging-soft-cil on Ubuntu 18.04.

What is libmono-debugging-soft-cil

libmono-debugging-soft-cil is:

Mono’s debugger-libs is a repository of various libraries to interface with the soft debugger libraries (and abstract debugger functions so other debuggers may be inserted as replacements).

Mono.Debugging backend for the Mono Soft Debugger.

There are three methods to install libmono-debugging-soft-cil 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 libmono-debugging-soft-cil Using apt-get

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

sudo apt-get update

After updating apt database, We can install libmono-debugging-soft-cil using apt-get by running the following command:

sudo apt-get -y install libmono-debugging-soft-cil

Install libmono-debugging-soft-cil Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libmono-debugging-soft-cil using apt by running the following command:

sudo apt -y install libmono-debugging-soft-cil

Install libmono-debugging-soft-cil 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 libmono-debugging-soft-cil using aptitude by running the following command:

sudo aptitude -y install libmono-debugging-soft-cil

How To Uninstall libmono-debugging-soft-cil on Ubuntu 18.04

To uninstall only the libmono-debugging-soft-cil package we can use the following command:

sudo apt-get remove libmono-debugging-soft-cil

Uninstall libmono-debugging-soft-cil And Its Dependencies

To uninstall libmono-debugging-soft-cil and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libmono-debugging-soft-cil

Remove libmono-debugging-soft-cil Configurations and Data

To remove libmono-debugging-soft-cil configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libmono-debugging-soft-cil

Remove libmono-debugging-soft-cil configuration, data, and all of its dependencies

We can use the following command to remove libmono-debugging-soft-cil configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libmono-debugging-soft-cil

References

Summary

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