292
submitted 1 day ago* (last edited 1 day ago) by marcie@lemmy.ml to c/linux@lemmy.ml

Upstream images vs bazzite: https://github.com/ublue-os/countme/blob/main/growth_upstream_with_bazzite.svg

My prediction: bazzite may have more installs than Fedora KDE by the end of the year.

you are viewing a single comment's thread
view the rest of the comments
[-] hperrin@lemmy.ca 39 points 1 day ago

Bazzite is awesome. Not surprised it’s so successful. Congrats to the team. :)

[-] ranzispa@mander.xyz 7 points 1 day ago

While I see value in something as NixOs for the reproducibility. I do not understand what is the value in having an immutable system. I'm not saying there's no value, I just can not imagine a use case in which it is better than a normal system.

[-] FG_3479@lemmy.world 4 points 8 hours ago

It protects against system breakage and malware because the core of the OS is sealed and updates can only fully complete or fully fail, you can't have a half-uodated system like Ubuntu would be if you unplugged the PC half way through.

And because your apps and commandline tools are sandboxed with Flatpak and toolbox/distrobox so malware getting in through one doesn't compromise the whole system.

[-] Tlaloc_Temporal@lemmy.ca 5 points 17 hours ago

I like Bazzite because it has a bunch of optimisations for getting games runnin well, and because it disallows applications screwing with the system. If I really need an application that demands it's files be put in a bunch of places I can't audit easily, it can go in a toolbox and not impact the system, or I can audit exactly what it does and layer it into the system.

For a Linux newbie, I really appreciate a system that stays what it is, and doesn't let anything change that without my explicit approval.

[-] Hazzard@lemmy.zip 6 points 22 hours ago* (last edited 22 hours ago)

I'll give my own nerdy answer, besides the "good for amateurs" one.

Personally, I'm pretty techy, but I use my PC primarily as a living room gaming PC. As such, keeping it working is paramount, although I can't resist tinkering with it anyway. I was afraid an immutable OS would limit my tinker projects, but I've found it to be a total non-issue. Even for complex tasks like self-hosting AI to play around with, podman has served admirably. Honestly, it gives me confidence to try more ballsy things than I would otherwise, rather than limiting me.

Additionally, I like the feeling that my core system is essentially unbreakable. Even if I ran sudo rm -rf, I don't even have the ability to truly pooch things. Similar deal for any virus or hacker that might access my hardware, you can't hide weird behaviour deep in my system, it's immutable. I've also crashed my computer a few times by blowing through my VRAM budget while tinkering with self-hosting AI, and such crashes don't scare me, I've got easy rollbacks if I crashed my PC while it was doing something delicate.

I'm even running the testing branch right now (I want earlier access to the latest Mesa, as it has bugfixes for the DOOM DLC), and I don't have to fear anything from an unstable branch. If it breaks, I can trivially rollback and switch branches to the latest stable in a few minutes, with immense confidence.

I love the assurance it gives, and the only thing it's ever blocked me from doing was installing my VPN client, but an OpenVPN config has done that job just fine. I'd consider switching to CachyOS, but the main reason I haven't is that I'd miss the comfort of my OS being immutable.

[-] Jaberw0cky@lemmy.world 5 points 23 hours ago

I tried bazzite and kinoite and they are great. Unfortunately I don't have a souped up gaming pc and I found them a little on the slow side compared to other distros.. I've been using NixOS for a couple of months and I am loving it. The system is responsive, the boot time is half that of bazzite and while perhaps it isn't ideal for someone's very first distro it also isn't that complicated, if I can figure it out 90% of other users could. I have all my old windows games working and my old hybrid Nvidia card chugging along nicely.

[-] giacomo@lemmy.dbzer0.com 1 points 16 hours ago

its a container image with a kernel. the whole idea is reproducibility.

[-] giacomo@lemmy.dbzer0.com 1 points 16 hours ago

"immutability" doesnt really make sense it the context of the container. like, if you want to change the image, just make a new one with whatever changes you want and boot that.

in my opinion, it doesn't make sense to change the whole base OS image just to install some random package or program. keep that in the user writable domain, or userspace. not in the base OS image.

[-] non_burglar@lemmy.world 1 points 6 hours ago

It's better to think about it as though you are making a queue of changes that need approval to be permanent. Rather than just accepting that you just installed a ton of dependencies for no reason because you didn't really want the software, you can cleanly reverse any of the changes.

In a sense, it accomplishes a similar thing as nix in a different way.

[-] hperrin@lemmy.ca 13 points 1 day ago

Run an update on a traditional system, and pull the power plug out when it’s half way through. If it recovers when you reboot it, you got pretty lucky.

Now do the same with an immutable system like Bazzite. It will be running the pre-update image when you reboot it. No harm done. It’s essentially impossible for an update (or even a failed update) to brick the system. You can always roll back to the last working image.

[-] excel@lemming.megumin.org 5 points 1 day ago

CachyOS does this just fine with bootable BTRFS snapshots before and after each update, without forcing me to use Flatpaks that don’t support all of the features of the normal apps or else break the immutability. For example, it's not possible to get all Discord features working in Flatpak (even with tinkering) due to inherent limitations of Flatpak.

[-] marcie@lemmy.ml 9 points 1 day ago* (last edited 1 day ago)

The real problem is config drift. You have to maintain a lot of little fixes over time as you operate vanilla Linux. I've run fedora atomic (and rebased to bazzite when it got fairly big) since it launched years ago with only one relatively minor hiccup that was resolved by a single line in terminal (rpm-ostree rebase). You can layer stuff over it to modify the base image and clear it if something breaks, whereas manually removing critical packages and being sure to clear every file would be a nightmare on any other distro. It's an extremely hands off experience that works just like git does and is very bullet proof and reproducible.

I like putting it on old people's computers. It's perfect for a seamless experience.

[-] hperrin@lemmy.ca 5 points 1 day ago* (last edited 1 day ago)

Yeah, a file system snapshot is another way of achieving safe upgrades. There are upsides and downsides of all approaches though.

Rolling back to a btrfs snapshot might be harder than just picking the other ostree image in GRUB. And you still have the problem where old binaries might be running when only the new binaries/libraries exist on disk. But it also saves space on disk compared to an immutable distro, and it’s much easier to make changes to system files. Every approach is a compromise.

[-] marcie@lemmy.ml 3 points 1 day ago* (last edited 1 day ago)

Yeah rolling back snapshots is way more annoying than ostree and is kinda a shotgun solution. Also ostree saves more disk space.

[-] ranzispa@mander.xyz 3 points 1 day ago

I see, that is a really nice feature! No idea why this is not something already safely handled my normal package managers.

[-] hperrin@lemmy.ca 7 points 1 day ago* (last edited 1 day ago)

It’s cause of the way an immutable system works. In an immutable system, the entire system is an image. Two are stored on disk. One is active, and the other is usually the previous image. When you update, it overwrites the old image. The current image stays untouched. It’s only once the new image is completely written to disk that it’s marked as the current image.

Package managers are working on the currently running system. They write over the only set of system files, and they can only do that one file at a time, so you can rely on the file system’s journal to make sure each file is correctly written, but there’s nothing preventing the system from being only half updated. If a package relies on a package that hasn’t been installed yet, and the update fails before it gets installed, that package is broken.

In a system like Ubuntu or Fedora, that’s mostly ok, because packages are always built for the kernel and library versions available throughout the lifecycle of the release. So a half updated system is probably fine and will continue the update when rebooted. But for rolling releases like Arch, or for a release upgrade like Ubuntu 25.10 to Ubuntu 26.04, a failed update might mean a broken system.

[-] MangoCats@feddit.it 3 points 1 day ago

It's the kind of thing they should have developed to release-ready state 20 years ago - when hard drives were already absurdly large vs needs of the OS and data.

[-] marcie@lemmy.ml 5 points 1 day ago

It’s the kind of thing they should have developed to release-ready state 20 years ago -

That did happen btw! The project is called the android open source project

[-] bluesquid0741b@aussie.zone 21 points 1 day ago

A htpc in which you just need to launch media

A steam Deck like handheld in which you just want your game launcher

A PC for a kid whom you don't want messing around with system files

A PC for your technologically inept family members to just use as an email/browser/word processor

[-] Cethin@lemmy.zip 12 points 1 day ago

I honestly think the kid example is a counter example. Kids now don't understand technology, because we try to keep them so far away from how it actually works. I'm very technologically literate because I was messing around with my system as a kid.

It's the same as how older generations can take apart an engine, and most people now can't even change their own oil. We try to "protect" users from the technology, and they never learn how it works. No, they should be given access to break it. That's how you learn how it functions.

[-] bluesquid0741b@aussie.zone 10 points 1 day ago* (last edited 1 day ago)

Because when I finish my 10 hour shift, get home from my 2 hour commute, to my 6 year old kid crying because she managed to fuck her Minecraft machine up somehow, I don't want to spend my only free half hour that day trying to work or what she did.

That's not a learning opportunity for her. Even if she had the patience to sit there and watch me try to fix it, she won't r get what I'm doing. And after getting up at 5.30, getting home at 7.30 watch how good I am at not just swearing at the thing instead.

[-] muusemuuse@sh.itjust.works 5 points 22 hours ago

Rsync each week changes to a network share with an A/B layout, switching backup targeted back and forth each week. Something breaks? Remote in, rsync back, by the time you get home from work it’ll be back as it was and running already.

[-] sgh@lemmy.ml 8 points 22 hours ago

What if you have a system that just works and you can't break?

No rsync, no remoting from work (vpn or other software et al), no "i gotta be on alert for when my kid breaks my computer again"

Also, why do we have to shame people for just wanting to use their computer?

[-] muusemuuse@sh.itjust.works 1 points 20 hours ago

I’m not shaming. I’m offering a simple Solution. The backups can be automated and you can NetBoot the restore process off that rsync target so you don’t have to be distracted at work. You can have a simple plan to execute if you get these calls while you are at work so there is no problem you can’t instantly reverse. It takes no time to pull off after you’ve set it up.

[-] sgh@lemmy.ml 4 points 15 hours ago

I do not agree about this being a simple solution, especially if you want to set up netboot for this, but I don't want to engage this discussion any further since we're just talking about a solution to a problem that I don't have and I don't care to solve, so maybe we should just agree to disagree?

[-] bridgeburner@lemmy.world 4 points 1 day ago

That's a wholly different problem right there. Namely the shitty wages and unaffordable housing. With proper wages, you would have the time for your kid since it would then be sufficient that only one of the parent works full time whereas the other takes care of the kid and the house and stuff like that.

[-] Cethin@lemmy.zip 2 points 1 day ago

Yeah, the problem might be that you're doing it. For me, it would have been on me to fix it.

[-] bluesquid0741b@aussie.zone 3 points 23 hours ago

You think I should tell a You think I should tell a 6 year old kid to fix a broken Linux system? I'm sorry this has turned from discussion into bullshit.

[-] FuckBigTech347@lemmygrad.ml 2 points 17 hours ago

You're underestimating children. When I was around that age I had to fix my broken PC because nobody around me knew how to (parents didn't care for Computers) and the next repair shop was far away.
My only support was some of the IT staff from School and books. I was setting up Windows 95 and making my own DOS boot floppies before I hit my teens, and I'm just the average working class person.

[-] Cethin@lemmy.zip 3 points 21 hours ago

6yo? Maybe not, although they probably could. My point was they will learn if they have to. 6yos are capable of far more than people give them credit for. They just need an incentive. They probably won't understand the system, but they can probably fix simple issues, which is also probably the only issues they'd create. They probably won't be using the terminal. At least by 10 they're capable of it.

[-] Axolotl_cpp@feddit.it 4 points 23 hours ago

The problem of the convo is that the other commenter talked without knowing the kid age, i agree that it's unrealistic to make a 6 years old kid fix any system at all, thought i can see a 11 years old learning that

[-] ranzispa@mander.xyz 5 points 1 day ago

I still miss the advantages for these cases.

I can understand the kid example, but I feel that's easily solved by not giving them root access.

A htpc in which you just need to launch media

Setup the system and install whatever media software. Update it every once in a while or setup auto updates. I do not see any difference between traditional os and immutable. You're likely not modifying any system files anyway.

A steam Deck like handheld in which you just want your game launcher

The producing company controls software and updates, it should be immutable anyway as users likely do not have root access. Were users to have root access this may make sense. I'm not sure, maybe the immutability would make updates easier for the company?

A PC for your technologically inept family members to just use as an email/browser/word processor

Are they really going to brick their system? That would require opening the terminal. But I mean, fair.

What I do not understand is why there are users swearing by bazzite and other immutable distributions. These examples you make is basically for users who just do the most basic operations with their systems. Fair, if this makes it easier for non technical people to use Linux I'm all for it. What I do not understand is why technically adept people are so excited for these kinds of distributions?

[-] bluesquid0741b@aussie.zone 7 points 20 hours ago

I control a htpc with an Xbox gamepad. Bazzite I don't even think about updates, it just happens instead of saying "should probably update" and unplugging my nose and keyboard from my other PC. Or leaving mouse and keyboard sit on the floor in front of my tv cabinet.

Most handheld suppliers are shipping windows, replacing it with an immutable system is definitely the way to go. On screen keyboards are play I guess, but even my experience just doing a regular distro on a tablet it was a hassle.

Look, I'm not going into detail on this anymore. But I want to say I'm surprised by how much people are pushing back. "Oh instead of using bazzite, you could setup rsync to do an a/b switch with your server if something goes wrong". (Elsewhere in these comments).

I just didn't think it would be so much for people to accept there are use cases for why people do things differently to them.

[-] ranzispa@mander.xyz 1 points 19 hours ago

I'm happy there are use cases. Another person told me to look at rpm-ostree and it looks pretty nice.

But for what you're saying I do not understand: how is an immutable server better than a normal one. You can setup auto updates; I do not see how rsync would help with that.

I imagine safe backup is nice, but for that you still have to connect keyboard and mouse on an htpc. Possibly not into a managed server, but there you have other layers of resilience anyway.

Sure, you likely have to do less things to fix it; but at this point the annoyance of having to move the keyboard to another room is much greater than 15 minutes figuring out what is wrong and how to fix it.,

Sorry, I'm not pushing back because I dislike the idea. I've been introduced to the rpm-ostree and It seems a good idea to me, maybe there's more nice ideas to find out.

[-] MangoCats@feddit.it 6 points 1 day ago

easily solved by not giving them root access.

Root vs non-root is, in a nutshell, a tangled mess with millions of opportunities for "oops, didn't think of that" situations: https://www.cve.org/downloads

Immutable keeps the legacy system confituration basically unchanged, but also restores it "from ROM" every time you power on. (not real ROM, but effectively.) In an immutable system, the attack surface is dramatically reduced, and much more diverse among systems than with a mutable OS.

[-] ranzispa@mander.xyz 3 points 1 day ago

I reckon this must be true. However I do not see this as a reason for wide adoption of immutable systems. I guess that is a fairly valid use case.

I'd like to understand why some users are enthusiastic about bazzite. As of now I understood two of the reasons:

  • updates work and do not break the system
  • it is a bit more secure

However I do not understand why these two things make their users so enthusiastic. It's two things you rarely worry about when using a computer. They are indeed important, but in my opinion not much of a problem in modern distributions.

In the other hand you have to install everything through flatpak, which is something which would really get to my nerves.

I understand there are some good advantages, I just fail to understand which ones those are.

[-] MangoCats@feddit.it 4 points 1 day ago* (last edited 1 day ago)

It's actually quite a lot more than a bit more secure. Think of it as the difference between traversing no-mans land on a bicycle (current systems) vs in an armored personnel carrier with armor thick enough to stop EVERYTHING that the other side can throw at it. Sure, you could just open the door of the APC and take a hit, but if you don't do that, you're pretty safe.

I do not understand why these two things make their users so enthusiastic

Are you trying to think logically about that question? Because that would be a huge mistake.

flatpak, which is something which would really get to my nerves.

Yeah, not my favorite either. A BIG part of why I'm not loving the majority of the immutable systems I have investigated is because they all seem to heavily lean on tech like flatpak, snaps, etc. and there are valid logical reasons for that, but I'd really rather not go there...

[-] marcie@lemmy.ml 3 points 1 day ago* (last edited 1 day ago)

It requires literally zero work from me to maintain, that's why I'm enthusiastic and want the project to do well. Saying mutable Linux is zero work is dead wrong. And if you do put work into your system, it actually sticks and doesn't decide to explode one day over it.

load more comments (6 replies)
load more comments (8 replies)
load more comments (1 replies)
[-] BeardedBlaze@lemmy.world 4 points 1 day ago

I can't tell you how many times I've had an update on a mutable system fuck my shit up to a point I just reinstalled the distro. Not having to worry about that is my primary reason for moving to immutable system. While malware and viruses are still mostly prevalent in the windows world, Linux isn't immune to it. That is, unless it's an immutable distro.

load more comments (5 replies)
load more comments (1 replies)
this post was submitted on 19 Jul 2026
292 points (99.3% liked)

Linux

66512 readers
572 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS