I'm completely stranger to Linux but I'm interested in buying a Dell XPS13 Dev edition (ships with Ubuntu). I quite don't like Unity though, so I was thinking about ditching it for Elementary OS but I don't want to break the convenient hw compatibility. Also, for other Ubuntu based distros like Kubuntu or Netrunner, would switching to them require me to find new drivers/patches?
-
1In general: Linux installs generic drivers so if you install kUbuntu the system itself will find all the drivers it needs (you can then opt to use 3rd party drivers). If Dell did any specific alterations to the software of the system you will loose them. You probably need to ask Dell (on their forum) though I doubt they support Elementary OS. Elementary OS is also off topic on Ask Ubuntu since it is not an official release. – Rinzwind May 19 '15 at 13:33
-
Search this and other forum to see what problems others who bought Dell XPS 13 (2015) had when they tired to install Linux. There are some hardware/driver issues, that Dell has sorted out in the Dev edition. If you replace the Dev edition Ubuntu with plain Ubuntu or any other distro, you will lose those Dell made changes. Eventually Dell will submit their mods upstream and they will be incorporated in various Linux distros. You may want to wait a few years for that. – user68186 May 19 '15 at 13:49
1 Answers
The *buntu variants (Kubuntu, Ubuntu Mate, Xubuntu, etc) are just a different selection of applications held in one of the many *-desktop
packages (eg kubuntu-desktop
, mate-desktop
, xubuntu-desktop
, etc). You can switch to one of the others fairly easily, just by installing one of those and removing ubuntu-desktop
and the applications it bundles.
The systems underneath these packages are exactly the same. It's Ubuntu.
Netrunner and Elementary OS are different distributions run by different people. Some might be based on Ubuntu but few are package-compliant to the point you would just install a new meta-package, like you would with an official spin.
The same goes for their driver support. What they do is up to them and while Dell might
So yeah, if you want to try Kubuntu, it's fairly painless and you keep your existing underlying system. Other things will require a fresh install and may (or may not) require further tuning.
Some compatible desktop variants provide repositories that provide the applications required. Elementary has a few for various versions. Here's how you'd add the "stable" version to Trusty:
sudo add-apt-repository ppa:elementary-os/stable
sudo apt update
sudo apt install elementary-desktop
I can't speak to how well this version works but it should leave your base Ubuntu system in one piece.
Netrunner also has a number of repos that might be able to be splinched into a real Ubuntu system.

- 293,335