Ubuntu – Technically speaking, what is different about Ubuntu compared to other Linux distributions?

debian

This is a question that's puzzled me for quite a while (and refers to the differences between all distributions).

In my mind, a distribution is: a pre-configured OS, with some pre-installed packages, some created by the distribution's community that are unique to that distribution (e.g. apt-get).

I'm not sure my definition is right as I feel there's something else. I'm really interested in setting up my own ArchLinux distro (which starts as a very minimal barebones system that you expand yourself) but feel I need to understand this first.

Best Answer

The biggest difference between different Linux distributions is the package management system used. Ubuntu is very similar to Debian and uses the Debian package management system (.debs, apt-get etc.). However, there is a much bigger difference between Ubuntu and Fedora and Red Hat which use the Red Hat package management system (.rpms, yum etc.). ArchLinux uses the Pacman package manager. Other distributions, such as Gentoo, require everything to be built from source.

Distributions with a package management system often have a different set of packages available in their repositories.

The most visible differences are the default application selection and the default themes and settings. These seem to be the decisions that cause the most controversy but they are the easiest to change; all distributions are extremely customisable.

Also, the different distributions have limited binary compatibility, which means that the source code for packages has to be compiled separately for each distribution to create native binaries.

You can read about binary compatability her: https://wiki.ubuntu.com/MarkShuttleworth

Related Question