How To Install ubuntume-gdm-themes on Ubuntu 18.04
Introduction
In this tutorial we learn how to install ubuntume-gdm-themes on Ubuntu 18.04.
What is ubuntume-gdm-themes
ubuntume-gdm-themes is:
The default GDM themes for Sabily. At the moment the package contains:
- HumanME
- Sabily-green
- Shahada
This is a dummy transitional package that will ensure a proper upgrade path. This package may be safely removed after upgrading.
There are three methods to install ubuntume-gdm-themes 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 ubuntume-gdm-themes Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install ubuntume-gdm-themes using apt-get by running the following command:
sudo apt-get -y install ubuntume-gdm-themes
Install ubuntume-gdm-themes Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install ubuntume-gdm-themes using apt by running the following command:
sudo apt -y install ubuntume-gdm-themes
Install ubuntume-gdm-themes 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 ubuntume-gdm-themes using aptitude by running the following command:
sudo aptitude -y install ubuntume-gdm-themes
How To Uninstall ubuntume-gdm-themes on Ubuntu 18.04
To uninstall only the ubuntume-gdm-themes package we can use the following command:
sudo apt-get remove ubuntume-gdm-themes
Uninstall ubuntume-gdm-themes And Its Dependencies
To uninstall ubuntume-gdm-themes and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove ubuntume-gdm-themes
Remove ubuntume-gdm-themes Configurations and Data
To remove ubuntume-gdm-themes configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge ubuntume-gdm-themes
Remove ubuntume-gdm-themes configuration, data, and all of its dependencies
We can use the following command to remove ubuntume-gdm-themes configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ubuntume-gdm-themes
References
Summary
In this tutorial we learn how to install ubuntume-gdm-themes package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.