this post was submitted on 26 Jul 2024
44 points (100.0% liked)

Linux

4930 readers
101 users here now

A community for everything relating to the linux operating system

Also check out !linux_memes@programming.dev

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 1 year ago
MODERATORS
 

I'm about to go ahead and go 100% Linux on my PC and completely get rid of Windows. The latest advancements in Windows application compatibility for Linux has taken strides and it's now easier than ever to run Windows apps thanks to Wine and Bottles and Steam's Proton. There's literally nothing I can't do in Linux that I could do in Windows.

The distro of choice I will probably go for is going to be Kubuntu. But I've been looking at immutable distros as a more stable alternative. But, it sounds to me like it's more adapted for smaller devices and IoT, like the Steam Deck or similar handheld devices.

Have you installed an immutable distro on your PC? What distro did you use? What was your experience like? What were the pros and cons according to you?

you are viewing a single comment's thread
view the rest of the comments
[–] superkret 4 points 1 month ago* (last edited 1 month ago) (5 children)

I ran Fedora Silverblue for the past few months. The selling point that convinced me was that the system you install is the exact same the developers use for testing.
I also hoped it would just update itself without any intervention. And I was fine with default Gnome and Flatpaks.

My experience was that it actually offered no real world benefit. Arch had fewer visible bugs. It crashed a few times, in a way that the only way out was cutting power. The auto-update didn't work, I still had to manually check for updates and click "install", and every update requires a reboot. Sometimes it needed 2. Video streaming was jerky even in the flat hub version of Firefox.
And it's pretty limiting: Many command line tools I'm used to were missing, even Gnome Tweaks was missing (WTF?). Of course I could "layer the image" and alter it to include what I need, but that defeats the entire purpose. And system tools don't work well in containers, either.

There's basically no in-depth documentation on how to do stuff that is standard on other distros but now doesn't work the same due to the immutability. And it had just too many inexplicable quirks to use it as a zero maintenance grandma OS.

I switched back to Debian. Installed just the minimum required base system, the minimum required packages to run Gnome shell, and got all my software from Flatpaks. It looks basically the same, is more stable and bug-free, and I can tinker on the command line if I feel like it.
I made an

alias Upd="doas apt update && doas apt dist-upgrade && doas apt autoremove --purge && flatpak update"  

which is so much faster than using the gnome software center.

[–] Frellwit@lemmy.world 3 points 1 month ago (1 children)

&& flatpak update

You can also include && flatpak uninstall --unused in your alias to clean up more space.

[–] superkret 1 points 1 month ago

Thanks, added it.

load more comments (3 replies)