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
    2
    ·
    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

  • Handles@leminal.space
    link
    fedilink
    English
    arrow-up
    1
    ·
    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
      0
      ·
      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

  • Sibbo@sopuli.xyz
    link
    fedilink
    arrow-up
    1
    ·
    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.

  • pr06lefs@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    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.