2

So I installed kde desktop from this repository

 ppa:kubuntu-ppa/backports

and installed it

sudo apt-get install kde-standard kubuntu-desktop

I don't like KDE and want to get ride of it. Is there a way to completely remove KDE desktop with its software without braking my Ubuntu install.

Levan
  • 10,880

3 Answers3

8

This can be solved by using ppa-purge to remove the packages you installed from the KDE Backports PPA:

sudo apt-get install ppa-purge
sudo ppa-purge ppa:kubuntu-ppa/backports
Richard
  • 8,502
  • 11
  • 47
  • 72
2

I used Synaptic Package Manager to remove it. It worked very very well.

The only thing that I would recommend is to have caution, since it is a very powerful program. Also, be patient and detail oriented.

look for the KDE Desktop Environment section and mark all installed packages for complete removal. Double check your choices and proceed once satisfied.

It will take a few minutes to do the job, but it will. It was easy and it even restored the Ubuntu greeter instead of the Kubuntu greeter.

Hope this works!

  • This also worked well for me! Using Synaptic to choose which packages belong to KDE is clearly safer than using apt-get, although it involves a lot of clicking. I'm back to the good old Ubuntu now. – Ubuntu_enthusiast Jul 22 '18 at 10:18
0
sudo apt-get remove kde-full
sudo apt-get --purge autoremove

This will do the trick

edit: the first command will delete kde-full package, the second command will delete all remaining kde packages depending on kde-full which no longer exists