The Linux ecosystem is vast and diverse, offering a multitude of distributions to suit every need and preference. With hundreds of distros to choose from, it’s a pity that most are rarely mentioned while the popular ones are constantly being regurgitated.

This thread aims to celebrate this diversity and shine a light on smaller projects with passionate developers. I invite you to pitch your favorite underappreciated distro and share your experiences with those lesser-known Linux distributions that deserve more attention.

While there are no strict rules or banlists, I encourage you to focus on truly niche or exotic distributions rather than the more commonly discussed ones. Consider touching upon what makes your chosen distro unique:

  • What features or philosophies set it apart?
  • Why do you favor it over other distros, including the popular ones? (Beyond “It just works.”)
  • In what situations would you recommend it to others?

Whether it’s a specialized distro for a particular use case or a general-purpose OS with a unique twist, let’s explore the road less traveled in the Linux landscape. Your insights could introduce fellow enthusiasts to their next favorite distribution!

  • puppy@lemmy.world
    link
    fedilink
    arrow-up
    5
    ·
    2 months ago

    Haha nice try. If everyone starts liking it then it won’t be niche anymore. So I won’t share it! /s

      • puppy@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        Nah I just posted this as a joke. I am on Fedora + KDE. Mainstream and boring as they come. Rock solid and stable though.

  • Handles@leminal.space
    link
    fedilink
    English
    arrow-up
    4
    ·
    2 months ago

    Three days and nobody mentioned TempleOS? If attempting to build The Third Temple in the form of an OS isn’t niche and exotic, I don’t know what is. 🤣

    • CrabAndBroom@lemmy.ml
      link
      fedilink
      English
      arrow-up
      3
      ·
      2 months ago

      For anyone unfamliar:

      TempleOS (formerly J Operating System, LoseThos, and SparrowOS) is a biblical-themed lightweight operating system (OS) designed to be the Third Temple prophesied in the Bible. It was created by American programmer Terry A. Davis, who developed it alone over the course of a decade after a series of manic episodes that he later described as a revelation from God.

      Davis began developing TempleOS circa 2003. One of its early names was the “J Operating System” before renaming it to “LoseThos”, a reference to a scene from the 1986 film Platoon. In 2008, Davis wrote that LoseThos was “primarily for making video games. It has no networking or Internet support. As far as I’m concerned, that would be reinventing the wheel”. Another name he used was “SparrowOS” before settling on “TempleOS”. In mid-2013, his website announced: “God’s temple is finished. Now, God kills CIA until it spreads [sic].”

      Davis died after being hit by a train on August 11, 2018.

      TempleOS was written in a programming language developed by Davis as a middle ground between C and C++, originally called “C+” (C Plus), later renamed to “Holy C”, possibly a reference to the Holy See. It doubles as the shell language, enabling the writing and execution of entire applications from within the shell. The IDE that comes with TempleOS supports several features, such as embedding images in code. It uses a non-standard text format (known as DolDoc) which has support for hypertext links, images, and 3D meshes to be embedded into what are otherwise standard ASCII files; for example, a file can have a spinning 3D model of a tank as a comment in source code. Most code in the OS is JIT-compiled, and it is generally encouraged to use JIT compilation as opposed to creating binaries. Davis ultimately wrote over 100,000 lines of code for the OS.

      From Wikipedia

  • pr06lefs@lemmy.ml
    link
    fedilink
    arrow-up
    2
    ·
    2 months ago

    I think nixos is still niche, but seems to be gaining momentum. It has some unique features:

    • Every package has its own dependencies, so you can install a 7 year old firefox alongside the latest, and have no interference.
    • Packages with dependencies in common still share them (for space savings).
    • Abandons the HFS, but can still fake it for apps that need it.
    • Can make dev environments that are exactly reproducible across machines, and only exist within a specific shell session. So you can have a project that relies on an out of date version of a compiler, and another that uses the latest, and run both at the same time.
    • Make your own packages that other people can install using a git repo address.
    • The package language can also describe a machine’s configuration; systemd services, default packages, user accounts, etc.
    • You can build and remotely deploy a machine config in one line.
    • You can cross compile a machine config for another cpu architecture, like ARM.
    • OS upgrades are atomic, and reversible. If it doesn’t work out, you can go back to the previous config.
    • No reason to ever reinstall. Recently upgraded a machine that had sat in a closet for 5 years to the newest release. Flawless upgrade.
    • Nixos boasts more packages than any other distro, over 100,000.

    There are certainly downsides - poor docs, confusing core language. Instructions for installing something on say debian will not work on nixos. I do think this style of package management is the future, if perhaps not this specific implementation. It can be a pain but its also super solid.

    • thejevans@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      2 months ago

      I use NixOS on my workstations, and I’m slowly migrating many of my server VMs over to it.

      NixOS w/flakes + home-manager + impermanence on zfs + disko w/ nixos-anywhere is amazing and gives an insane amount of declarative control over your system.

      That said, the current state of the leadership gives me pause to recommend it to anyone, and I do have a few devil’s advocate responses to some of what you said:

      Every package has its own dependencies, so you can install a 7 year old firefox alongside the latest, and have no interference.

      Unless the dependency is Qt, then it better all be the same version.

      Abandons the HFS, but can still fake it for apps that need it.

      Using ldd and nix-alien to patch in dynamic libraries still sucks, and often doesn’t work without a lot of extra effort. If what I want isn’t in nixpkgs, and I can’t get nix-alien to work on the first try, I just end up not using whatever I was trying to run.

  • Sibbo@sopuli.xyz
    link
    fedilink
    arrow-up
    2
    ·
    2 months ago

    Not niche, but surely exotic: NixOS, a distribution that is configured via a purely functional language. There is no such thing as installing or uninstalling packages, you add or remove things from your configuration and then simply apply that configuration.

    • canadaduane@lemmy.ca
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      I really wanted to like NixOS (and I do, theoretically), but I couldn’t dedicate more than 5 full days over Christmas to learn how to get to a working development system.

      • Laser@feddit.org
        link
        fedilink
        arrow-up
        2
        ·
        2 months ago

        May I ask what the issue actually was? Was it about “working system” or about “working development system”?

        I don’t recall needing more than two days for getting a system up and running for the first time, and in fact it worked so well that I switched all my machines to it by now; granted, I have changed a lot about the configuration ever since and there seem to be a lot of paths to take in the beginning and it’s not always clear which one to take. But getting a working system, even one suited for development (personally, I’d recommend a nix development shell for that), shouldn’t really take that long.

        • CrabAndBroom@lemmy.ml
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 months ago

          For me, the main blocker was just getting my head around the concept of it, as it seems like such a wild idea for a distro. I still don’t think I’m 100% there, but I have enough down now to cobble a working system together at least.

        • canadaduane@lemmy.ca
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 months ago

          Working development system. I got quite far, but after so much work, became very frustrated when a VSCode plugin wouldn’t work properly because it needed (and assumed) read/write access. I didn’t want to have to manage and think about every little plugin I experimented with at the OS level.

        • CrabAndBroom@lemmy.ml
          link
          fedilink
          English
          arrow-up
          3
          ·
          2 months ago

          I think it could be good for something like an office, where it might be beneficial to have everyone on an identical setup that’s immutable so they can’t mess with it, and can (presumably) be duplicated by just copying a config file.

          I assume the con would be that if something breaks in an update, it probably breaks for everyone. But by the same token, the solution should fix it for everyone too.

        • Laser@feddit.org
          link
          fedilink
          arrow-up
          1
          ·
          2 months ago

          Using it on all my machines (desktop and notebooks), can’t really complain – but then again, couldn’t really complain about Arch either

  • claymore@pawb.social
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    Void is my favourite distro, although I haven’t used it for a while. Extremely fast package manager, rolling release but not bleeding edge, super simple, very fun to tinker with (more than Arch imo). I stopped using it because I wanted something more popular for easier troubleshooting. But if I ever get a secondary PC/laptop I’ll probably start using it again.

    • cerement@slrpnk.net
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      take a look at Alpine Linux – Alpine, Void, and Gentoo all grew out of a similar “Linux plus BSD” attitude – Alpine’s package manager is as fast or faster than Void’s – Alpine is pretty under-represented (but not absent) on the desktop side of things while being rather over-represented in the container, VM, server side of things (meaning the small community tends to be rather admin heavy)

        • Drito@sh.itjust.works
          link
          fedilink
          arrow-up
          0
          ·
          2 months ago

          I’m annoyed by these Gnome centered distros. If I had to choose a single DE for a distro, I 'd choose a flexible one that can run on potatoes, such as Xfce. I suppose Xfce as default is a part of the MX linux popularity.

          • LeFantome@programming.dev
            link
            fedilink
            arrow-up
            1
            ·
            2 months ago

            I agree with this. In the case of Chimera Linux, it is a goal of the distro to have “no legacy” and so it is Wayland and Pipewire only from the start. That limited their choices back when they were making the decision.

            Xfce is still X only although they are making progress.

  • hitwright@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    Guix - It’s basically an abstraction over software compilation and distribution. It uses guile lisp language as glue to bind it all together. (Full programming language to configure with)

    The beauty arises if you want to get a minimal os running with a single application and package it either as a full iso or a docker container you can. Or if you need to get an OS to run as your router.

    It’s also highly encourages free software to the point, that proprietary software actually feels like huge downgrade to include. (Compilation from source is always available)

    I’ve been using this only for 11 months. I’ve barely scratched the surface on what is possible. So I’m pretty sure I’m not making it justice on what a gem it is. For example: Only recently I started to use programs in an immutable way.

      • hitwright@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        Since there are not many developers there are some build systems that are more prioritized than others. If you come from emacs side of things, it’s great. Rust is around 4 versions older. And the single developer recently burned out. The package manager is a lot like nixos, so every package requires work to introduce to the system.

          • hitwright@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            2 months ago

            Thanks for the info, although versioning afaik not the thing that keeps it behind. There are tools to import the necessary packages with ‘guix import crate’. It automatically selects the necessary packages.

            Difficulties arise when Cargo.toml for example uses git as source. Then you have to pull and write specifications for not a standard package. The build system is isolated and cannot download anything off the internet.

            • iopq@lemmy.world
              link
              fedilink
              arrow-up
              0
              ·
              2 months ago

              So what nix does is it hashes the inputs, so git still works even immutably if the hash matches

              • hitwright@lemmy.world
                link
                fedilink
                arrow-up
                0
                ·
                2 months ago

                Does nix require the exact commit be written out for the package, or does it generate a hash during the build taking the newest git commit?

  • Luden [comrade/them]@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    2 months ago

    Arkane Linux. The argument for using a more stable base for an immutable system is that you can get all the updated libraries and things you need by running things as flatpaks or in distrobox.

    But I’ve always wanted an immutable Arch because if something breaks, you just roll back without having to use Snapper or anything like that. Think maintenance free Arch where you can even autoupdate without much worry.

    Rolling your own arch images is made easier too, so you can do all the customization you want, but as a base part of your system instead of packages installed after the fact.

    That said, I still run Ublue variants on all my devices with Arch containers. But I hope this project sees steady momentum.

      • governorkeagan@lemdro.id
        link
        fedilink
        English
        arrow-up
        1
        ·
        2 months ago

        I really wanted to try BlendOS but the installer didn’t work at all for me and a couple others (this was when v4 was released). Haven’t tried again recently though.

        • jrgn@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          2 months ago

          Yeah, I noticed. I miss not having a declarative system, but agree on Nix. I don’t have the time to learn all that. I think it seemed neat to use yaml, since it is pretty straight forward

    • walden@sub.wetshaving.social
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      I installed it on my Desktop, replacing LMDE. Unfortunately I have trouble running the one game that I play even though it works on Linux with Steam. It worked in Linux Mint, but for some reason it won’t start in Bazzite. Surely it’s because I have an Nvidia graphics card, but that wasn’t a problem with Linux Mint.

      Another problem that I ran into was Firefox (flatpak) crashing all the time. Luckily you just have to disable wayland using Flatseal, but I still get graphics glitches with it.

      I’m thinking of restoring my Linux Mint backup.

      I don’t know why I’m responding to your comment, I just wanted to share my experience, I guess.