this post was submitted on 26 Sep 2025
710 points (98.8% liked)

Linux

58574 readers
1635 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 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] iopq@lemmy.world 6 points 1 day ago (2 children)

NixOS is bleeding edge immutable, but it's like deep in the weeds

[–] Nibodhika@lemmy.world 7 points 1 day ago

NixOS would be ideal for a purely testing, if I were setting a test bench I would definitely use Nix. BUT they also need to use something that people watching might be willing/able to use, and Nix has a very steep learning curve.

[–] kuberoot@discuss.tchncs.de 5 points 1 day ago (2 children)

If I understand correctly, it's a different kind of "immutable", since distros like Bazzite provide premade immutable images you use and anything else you need you install using alternative means, whereas NixOS is an immutable image generator that requires you to set up your own definitions for the image, but also lets you install software by adding it to that image.

[–] marcie@lemmy.ml 1 points 1 day ago

You don't necessarily need to make your own NixOS flakes, you can use ones maintained by others

It's great for homeservers

[–] WalnutLum@lemmy.ml 6 points 1 day ago

They're both "immutable" in the sense that they're setting up either read-only Filesystem Hierarchies (as in bazzite, which uses ostree) or Symlinking their entire filesystem hierarchy to a read-only "store" (as in nixos).

Bazzite uses something called ostree to "diff" the filesystem hierarchy much like git does, while Nix basically makes giant read-only store of files and hashes them, then weaves them all together into a "view" of a filesystem that gets symlinked into the context of a running program.