How To Install systempreferences.app-dbg on Ubuntu 20.04

In this tutorial we learn how to install systempreferences.app-dbg on Ubuntu 20.04. systempreferences.app-dbg is GNUstep preferences application - debugging symbols

Introduction

In this tutorial we learn how to install systempreferences.app-dbg on Ubuntu 20.04.

What is systempreferences.app-dbg

systempreferences.app-dbg is:

System Preferences is an application which allows one to manage the settings of many aspects of the GNUstep environment and its applications.

This package contains the detached debugging symbols. Build-Ids: 272f88ae55a96549afb9a3eee9344692bfeb7058 2eedc5a56ba2ab726d23bf8fa7da3dd53e300f9d 2f127641c21121249011b7afd610b48cc320dbaf 606eb6da40a32a6c7b0d5521fbdf6c7a9c546c57 7676deed3384a6f96abcf788624f6046f7986a74 db451eab549026e73b13ce00a45e98f65711dede df087ce3a353ed806c839d0aebffdd75e085575b e444a74adbac5ea7ede7ab20cd697ca6a36bd5b0 f1adda451423bc089906d13a8b9cd9f3775ff5c5 f901b1c822cc9fe52ef74bc9221c8ec8ddba5ede

There are three methods to install systempreferences.app-dbg 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 systempreferences.app-dbg Using apt-get

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

sudo apt-get update

After updating apt database, We can install systempreferences.app-dbg using apt-get by running the following command:

sudo apt-get -y install systempreferences.app-dbg

Install systempreferences.app-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install systempreferences.app-dbg using apt by running the following command:

sudo apt -y install systempreferences.app-dbg

Install systempreferences.app-dbg 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 systempreferences.app-dbg using aptitude by running the following command:

sudo aptitude -y install systempreferences.app-dbg

How To Uninstall systempreferences.app-dbg on Ubuntu 20.04

To uninstall only the systempreferences.app-dbg package we can use the following command:

sudo apt-get remove systempreferences.app-dbg

Uninstall systempreferences.app-dbg And Its Dependencies

To uninstall systempreferences.app-dbg and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove systempreferences.app-dbg

Remove systempreferences.app-dbg Configurations and Data

To remove systempreferences.app-dbg configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge systempreferences.app-dbg

Remove systempreferences.app-dbg configuration, data, and all of its dependencies

We can use the following command to remove systempreferences.app-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge systempreferences.app-dbg

References

Summary

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