How To Install ubuntu-touch-settings on Ubuntu 20.04

In this tutorial we learn how to install ubuntu-touch-settings on Ubuntu 20.04. ubuntu-touch-settings is default settings for Ubuntu Touch default settings for Ubuntu Touch

Introduction

In this tutorial we learn how to install ubuntu-touch-settings on Ubuntu 20.04.

What is ubuntu-touch-settings

ubuntu-touch-settings is:

This package contains the default settings used by Ubuntu Touch.

Package: ubuntu-touch-settings Architecture: all Version: 20.04.5 Priority: optional Section: universe/x11 Source: ubuntu-settings Origin: Ubuntu Maintainer: Ubuntu Desktop Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 18 Depends: dconf-gsettings-backend | gsettings-backend, libglib2.0-bin Filename: pool/universe/u/ubuntu-settings/ubuntu-touch-settings_20.04.5_all.deb Size: 3152 MD5sum: 00bb742d0cbb4978f95dd7f110341d8f SHA1: 2d4a0456afd01d1bc026ddcfe465856daf300dbf SHA256: 8416f2063740b23580156a62f0f8701c4a2937ea8bb274b62f16ca9dc9af5606 Description-en: default settings for Ubuntu Touch This package contains the default settings used by Ubuntu Touch.

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

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

sudo apt-get update

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

sudo apt-get -y install ubuntu-touch-settings

Install ubuntu-touch-settings Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ubuntu-touch-settings using apt by running the following command:

sudo apt -y install ubuntu-touch-settings

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

sudo aptitude -y install ubuntu-touch-settings

How To Uninstall ubuntu-touch-settings on Ubuntu 20.04

To uninstall only the ubuntu-touch-settings package we can use the following command:

sudo apt-get remove ubuntu-touch-settings

Uninstall ubuntu-touch-settings And Its Dependencies

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

sudo apt-get -y autoremove ubuntu-touch-settings

Remove ubuntu-touch-settings Configurations and Data

To remove ubuntu-touch-settings configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge ubuntu-touch-settings

Remove ubuntu-touch-settings configuration, data, and all of its dependencies

We can use the following command to remove ubuntu-touch-settings configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ubuntu-touch-settings

References

Summary

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