KDE is a well-known desktop environment for Unix-like systems designed for users who wants to have a nice desktop environment for their machines, It is one of the most used desktop interfaces out there.
Here at Ibmi Media, as part of our Server Management Services, we regularly help our Customers to perform related Linux desktop applications queries.
In this context, we shall look into how to install KDE Plasma on Ubuntu 20.04 LTS.
1. Perform System Update
First, make sure that all your system packages are up-to-date by running the following apt commands in the terminal:
$ sudo apt update
$ sudo apt upgrade
2. Install KDE Plasma on the system
There are different methods you can apply to install KDE Plasma in Ubuntu 20.04 system. The first way is to install just the desktop environments. There is also an option to install a complete KDE environment which includes the KDE Plasma desktop and the default KDE applications.
i. Install KDE Plasma desktop in Ubuntu 20.04 using the below command:
$ sudo apt install kde-plasma-desktop
ii. If you want the complete package with all the KDE apps, you can install using the below command:
$ sudo apt install kde-full
iii. You can install KDE standard, which comes with the core KDE Plasma desktop and the standard applications such as default web browser, text editor, email client, etc by running the below command:
$ sudo apt install kde-standard
Once the KDE installation is done, reboot the system to take effect. On the login screen, select KDE Plasma as a desktop environment and log in to the system.
Now, if you didn't like KDE or want to remove this environment for any reason then follow these steps to uninstall KDE on Ubuntu:
1. Remove the KDE package you installed.
$ sudo apt --purge remove kde-standard
Replace kde-standard with the version of kde you installed.
2. Remove the dependencies.
$ sudo apt autoremove
3. Reboot the system
$ reboot
Note: Some of the apps installed while installing KDE package shall have to be removed manually. Apps like (Konsole, Konqueror etc.)
After rebooting, if you're greeted with a CLI login screen then don't panic.
This is because you had set SDDM as default display manager and now you removed it.
So, let's set gdm3 as default:
1. Login using the username and password.
2. Start the gdm3 service:
$ sudo systemctl restart gdm3
Now, your GUI should be back again.
3. Set gdm3 as default.
$ sudo dpkg-reconfigure gdm3
4. Reboot the system and check if everything is working properly.
This article covers the process of installing the KDE Plasma desktop environment in Ubuntu 20.04 LTS Focal Fossa system. In fact, The name KDE is derived from "K Desktop Environment". KDE Plasma Desktop Environment provides Linux users on various distributions an alternative graphical interface to customize their desktop environment and applications for everyday use enhancement.