this post was submitted on 27 Jun 2024
75 points (95.2% liked)
Linux
48144 readers
717 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
Echoing the other sentiments, it's probably a good idea to hunt down why your system is having trouble because distro hopping might not fix it.
That being said I've recently been using bazzite and it's been relatively smooth. You just have to learn a couple (easy) ways to do package management a little differently.
How is package management different on Bazzite?
I'm not the one you posed your question towards, but it's related to Bazzite's relation to Fedora Atomic and uBlue.
To put it simply,
dnf
is the 'source of truth' when it comes to package management (i.e. finding, installing, updating, removing (etc) of packages) on (traditional/regular) Fedora. So,dnf
is basically to Fedora whatapt
used to be to Ubuntu. Sure, you can use Flatpak or any other (additional) package manager. But, there's no need to unless the software you seek is not available for installation throughdnf
.Bazzite, on the other hand, does not allow you to install any packages through
dnf
. Instead,rpm-ostree
,flatpak
, Toolbx/Distrobox and (exclusive to uBlue projects)brew
(andujust
) are provided by default. But, you might have to learn when you'd have to use which and why.To educate yourself on this, you should definitely consider reading up on the related entry within Bazzite's documentation. In general, there's a lot of very useful stuff in Bazzite's documentation. Therefore, if you intend to use Bazzite, you should definitely read through its documentation.
Ah gotcha okay. Probably explains why sudo dnf update/upgrade wasn’t quite doing what I expected in my Bazzite install. Force of habit since I’ve used Fedora and Debian based systems in the past.
Exactly.
Understandable.