Skip to content

Instantly share code, notes, and snippets.

@isalgueiro
Forked from nihathrael/kubuntu-to-neon.md
Last active April 8, 2018 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isalgueiro/684bfaebe0bc41e4e66571e569aa9123 to your computer and use it in GitHub Desktop.
Save isalgueiro/684bfaebe0bc41e4e66571e569aa9123 to your computer and use it in GitHub Desktop.
How to upgrade kubuntu 16.04 -> KDE neon

This worked for me and might not work for you. It's a seriuos change to your system, you need to be familiar with apt and with fixing missing or invalid dependencies.

Try it at your own risk!

Uninstall any KDE or Plasma related package

apt purge kubuntu-desktop plasma-desktop kde-baseapps kde-runtime kubuntu-driver-manager
apt autoremove

If you have any KDE PPA, delete it. I had kubuntu backports, so:

rm /etc/apt/sources.list.d/kubuntu-ppa-ubuntu-backports-xenial.list

Add the neon repositories and install the neon desktop

$ wget -qO - 'http://archive.neon.kde.org/public.key' | sudo apt-key add -
$ sudo apt-add-repository http://archive.neon.kde.org/user/lts
$ sudo apt-get update
$ sudo apt-get install neon-desktop

A few little fixes

dpkg-reconfigure sddm
apt install kde-config-gtk-style kde-config-gtk-style-preview plymouth-theme-breeze grub-theme-breeze

Upgrade everything. Repeat if necessary, until everything is really up to date and you have no held-back packages.

$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get dist-upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment