this post was submitted on 03 Aug 2024
27 points (93.5% liked)

Linux and Tech News

950 readers
60 users here now

This is where all the News about Linux and Linux adjacent things goes. We'll use some of the articles here for the show! You can watch or listen at:

You can also get involved at our forum here on Lemmy:

Or just get the most recent episode of the show here:

founded 1 year ago
MODERATORS
top 8 comments
sorted by: hot top controversial new old
[–] dogsnest@lemmy.world 11 points 1 month ago (2 children)

"Immutable" is the new "orange."

[–] Telorand@reddthat.com 5 points 1 month ago

It promises certain things that traditional distros can't, namely reproducibility and scalability. Many are based on OCI images, which are built and then pushed to everyone. It's definitely the hot new thing, but at least it's not without warrant.

[–] shamrockpreacher5@reddthat.com 3 points 1 month ago

Any good papers to read more about the actual mechanisms used behind immutability?

[–] Telorand@reddthat.com 4 points 1 month ago (1 children)

I find it interesting to learn about the different tooling involved with the different immutable distros. Fedora and others use ostree, this one uses arkdep, Nitrux uses overlayroot, Nix uses nix-build, and there's probably others.

[–] boredsquirrel@slrpnk.net 3 points 1 month ago* (last edited 1 month ago) (1 children)

a-b-root in VanillaOS, now om version 2.0

Manjaro uses the same stuff as ArkaneLinux

Not sure what XeniaOS (immutable Gentoo) and EndlessOS (immutable Debian) use

CentOS and RHEL will likely use bootc and I think that will replace ostree. Which I find sad, but container tooling is just more popular

[–] Telorand@reddthat.com 4 points 1 month ago (1 children)

I watched a couple of keynotes about it, and bootc is better, tbh. Bootable containers is definitely the way to go, and I'm excited for when it's released to the public (officially, it's still available to download in the meantime).

I've been trying to get a weird VPN package installed that has to be installed to the system layer, but you have to run it as a user. Since containers are mutable, it should be trivial to install it. The main problem with rpm-ostree is that, as great as it is, it only works with RPM files, and sometimes you need to run something that doesn't have an RPM option.

[–] boredsquirrel@slrpnk.net 3 points 1 month ago (1 children)

Yes packaging RPMs for random little things is annoying, but not an unsolvable issue.

I think there is a tool to make RPMs from directory structures, but I also never built an RPM.

sddm2rpm is a good example of such a hack.

[–] Telorand@reddthat.com 2 points 1 month ago

I've tried looking up guides, and it's not a simple task, especially if you're reverse engineering somebody else's script. If I can just run it in a bootable container as if I was using a typical mutable system, that's something pretty much everybody can do.

But I agree, there's a few tools that make building RPMs and flatpaks easier, and it can be done. It's just that the learning curve is steeper, and that is going to keep certain people away from immutable distros.