I want to have both KDE and Gnome shells on Ubuntu. Ubuntu only has Gnome installed by default. How do I install KDE?
7 Answers
You need to install the kubuntu-desktop
package for the full install with the following command.
sudo apt-get install kubuntu-desktop
Then the next time you login you can choose what to use from the login screen (under Session).

- 114,770

- 19,181
-
1what about the sudo apt-get install kde-plasma-desktop... i tried it .. but seems to give minimal GUI features.. how do i add to it? – juggernauthk108 Feb 05 '16 at 20:38
To get just the plasma environment (on 12.04 and newer):
sudo apt-get install plasma-desktop
It worked fine for me on 15.10

- 201
-
3+1 and this is valid for 12.04 and newer releases. Also, there is
kde-plasma-desktop
for users who want desktop environment with minimal set of applications. – Feb 05 '16 at 15:31
If you want to log in from KDE run sudo apt-get install kdm
, sudu apt-get remove gdm
, and dpkg reconfigure kdm
.

- 167
On 30/09/2015:
To install KDE on Ubuntu (12.04,14.04,14.10,15.04,15.10) (plasma 5.3)
sudo add-apt-repository ppa:kubuntu-ppa/backports
sudo apt-get update && sudo apt-get dist-upgrade
sudo apt-get install kubuntu-desktop
To install KDE on Ubuntu (15.04,15.10) (plasma 5.4)
sudo add-apt-repository ppa:kubuntu-ci/stable
sudo apt-get update && sudo apt-get dist-upgrade
sudo apt-get install kubuntu-desktop
Note: To install plasma 5.4,you need to remove backports ppa.

- 9,379
-
-
-
thanks for the super fast response! Pls have a look at this post which i just posted regarding a issue getting plasma 5. http://askubuntu.com/questions/691331/ended-up-having-kde-4-x-plasma-4-instead-of-plasma-5-4-from-ubuntun-14-04 – samsamara Oct 29 '15 at 02:52
-
-
@KillBill please run
sudo apt-get install kubuntu-desktop
and let me know the result =) – Ravan Oct 29 '15 at 03:09 -
thanks mate! it says: 27 to upgrade, 203 to newly install, 0 to remove and 556 not to upgrade. Need to get 92.5 MB/161 MB of archives. – samsamara Oct 29 '15 at 03:15
-
Just open synaptic (If not installed yet, install it by ubuntu software center) and search for desktop environment and install plasma-desktop

- 2,013
I think the most complete answer is here. According to what you want to install (only the GUI or GUI+some packages).
Citing the content of the answer:
plasma-netbook
andplasma-desktop
differ only by whether they install the netbook or the desktop interface.kde-workspace
is identical toplasma-desktop
.
kde-plasma-desktop
will install a few KDE programs: Dolphin, Konqueror, kde-baseapps, konsole, kwrite, and kde-passwd.
kde-standard
installs a bunch of stuff on top ofkde-desktop
: Akregator, Ark, Dragonplayer, gnupg, Kaddressbook, Kate, KDE wallpapers, Kmail, etc.
kubuntu-desktop
installs even more thankde-standard
.kubuntu-desktop
is the package you would download from the Ubuntu website if you wanted Kubuntu, but if you only want the Plasma interface, not any of the default programs,plasma-desktop
might be sufficient.
Choose the package you want and then run sudo apt-get install package-name

- 291
kde-standard
. This is becausekde-plasma-desktop
is missing a bunch of stuff like icons and widgets (eg quicklaunch) – Timothy C. Quinn Feb 14 '24 at 23:04