47
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 26 Aug 2025
47 points (100.0% liked)
Linux
57670 readers
627 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 6 years ago
MODERATORS
Why do you consider this a problem?
I'm worried about complexity. Traditional Linux package management isn't perfect. Atomic distros try to address this in various ways, including but not limited to a clear separation of OS and user packages.
For example, on Fedora Silverblue you're not meant to modify the base OS with rpm-ostree. You're supposed to use flatpak and toolbox (homebrew and appimages are also options, but not preinstalled). But these have limitations that rpms do not.
On the BSDs, this isn't really a problem. It manages a clear OS and user package split without the sandboxing limitations. That's not to say that sandboxing is bad, I fully support it, but when you run into the currently unfixed limitations, it's a pain. As an example, in the snap and flatpak versions of Chromium-based browsers, you can't use Android's adb tools, which I used to need when using custom OSs on my Pixel. You either have to overlay the rpm or use a non-atomic distro.
Systemd sysext is being thrown around as the solution to this problem as the way to install software that needs to be unsandboxed but without modifying the base OS. But I don't see why instead we can't just still be able to install RPMs on the base system, but to places like /usr/local/bin. The systemd sysext method seems like an unnecessary reliance on systemd and additional complexity. Take this for example: https://github.com/mmcnutt/Bazzite-Discover-Sys-Ext. There's so much work being done, what what is basically just taking the existing Plasma Discover rpm and converting it into a new format.