this post was submitted on 11 Oct 2024
83 points (80.7% liked)
Linux
48182 readers
1769 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
The role of a distribution is to curate packages - select the right combination of versions and verify if it works together. Providing package repositories is also a big one, imagine if you had to compile everything on your machine yourself on every update (khm gentoo khm).
Other than that there isn't really a lot of space for innovation. After you have a kernel, some base packages, package manager, and maybe a DE, you can install everything else yourself.
The main point of differentiation these days in on the package management side - do you want a rolling release, or a more conservative approach.
There is one point of innovation left, but it highly technical and somewhat risky for everyday users -
libc
alternatives. The C standard library is one of the few core packages in a distro that can't really be replaced by the user.Why would that be innovation? libc is stable and ubiquitous. Ironically, Gentoo would probably pull it off but it's not for the distros to do, but rather upstream.
Alpine for example uses musl, and Gentoo offers it as an option.
I don't completely understand the benefits, my own programming experience is several layers away from inner workings of an OS, but at least some distros claim there is space for improvement.
This compares GNU's libc with musl (aims at POSIX conformance and being lightweigth), uClibc (size) and dietlibc (size but has no full support?).
It leaves out Google's bionic, used in Android, which is not compatible with GNU's libc... go figure...
So most alternatives aim to be smaller and some also focus on standards compliance (GNU's libc is not fully POSIX-compliant AFAIK).