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).
- 122,292
- 133
- 301
- 332
- 19,506
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
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,567
Just open synaptic (If not installed yet, install it by ubuntu software center) and search for desktop environment and install plasma-desktop
- 2,043
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-netbookandplasma-desktopdiffer only by whether they install the netbook or the desktop interface.kde-workspaceis identical toplasma-desktop.
kde-plasma-desktopwill install a few KDE programs: Dolphin, Konqueror, kde-baseapps, konsole, kwrite, and kde-passwd.
kde-standardinstalls a bunch of stuff on top ofkde-desktop: Akregator, Ark, Dragonplayer, gnupg, Kaddressbook, Kate, KDE wallpapers, Kmail, etc.
kubuntu-desktopinstalls even more thankde-standard.kubuntu-desktopis 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-desktopmight be sufficient.
Choose the package you want and then run sudo apt-get install package-name
- 301