So we can clearly see the most popular distros and the reasons why people use them, please follow this format:

  • Write the name of the Linux distro as a first-level comment.
  • Reply to that comment with each reason you like the distro as a separate answer.

For example:

  • Distro (first-level comment)
    • Reason (one answer)
    • Other reason (a different answer)

Please avoid duplicating options. This will help us better understand the most popular distros and the reasons why people use them.

    • 00@kbin.social
      link
      fedilink
      arrow-up
      13
      ·
      1 year ago

      Easy to set up, very helpful community. If you liked Manjaro or think Manjaro is sketchy but like the idea of a slightly pre-configured arch, check it out.

    • ClonedPuffin@lemmy.world
      link
      fedilink
      arrow-up
      11
      ·
      1 year ago

      This, basically Arch but quick to install with all the most important things installed and ready without being bloated.

    • LeafyBirch@kbin.social
      link
      fedilink
      arrow-up
      10
      ·
      1 year ago

      It’s arch. It just happened to be the composition i had my previous arch setup as. Yay for AUR stuff, KDE Plasma for DE. Includes a couple of useful tools and makes for a very solid OS.

      Anyone who has been in the Ubuntu sphere of things with Linux, should take a moment to try arch. EndeavourOS is perfect for these people.

    • methodicalaspect@midwest.social
      link
      fedilink
      arrow-up
      4
      ·
      1 year ago

      Same. I’ve done the vanilla Arch thing and it’s alright, but the quality of life enhancements that come with EndeavourOS make it a great daily driver.

      It’s the only distro I could get DaVinci Resolve Studio, Blackmagic Intensity Pro 4k, and my Radeon RX 6750 XT working with, consistently.

    • blackbrook@mander.xyz
      link
      fedilink
      arrow-up
      15
      ·
      1 year ago

      The big advantage IMHO, is the out of the box BTRFS set up that lets you simply roll back to a non-broken state, right from the grub menu, should an update break your system. I haven’t had to use it yet, but it is a huge source of comfort knowing it is there.

      Also, many people coming to opensuse remark how much snappier it is than other distros.

      • evadzs@lemmy.world
        link
        fedilink
        arrow-up
        7
        ·
        1 year ago

        Garuda uses this feature on an Arch base, it’s saved me a couple of times. Props to openSUSE for developing the way to make that happen!

        • kurcatovium@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          1 year ago

          Glad to hear someone else uses this awesome tool. I think unstable debian based Siduction uses that too.

      • shotgun_crab@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        1 year ago

        BTRFS has saved my life a bunch, I’m the kind that enjoys experimenting and changing stuff just to see what happens

      • CrypticCoffee@lemm.ee
        link
        fedilink
        arrow-up
        4
        ·
        1 year ago

        It’s getting 3/4’s of the votes of Debian. I think their profile has increase a lot in the last year or so.

    • CrypticCoffee@lemm.ee
      link
      fedilink
      arrow-up
      5
      ·
      edit-2
      1 year ago

      Security by default. Firewall is set up blocking ports for UDP etc. so you are protected out of the box.

    • DarthVi@lemm.ee
      link
      fedilink
      arrow-up
      6
      arrow-down
      1
      ·
      1 year ago

      I agree, it’s great!

      • image with baked in nvidia drivers which work out of the box without too much fuss
      • if you encounter problems, you can refer to the system76 website or use a solution provided by the community, since it’s based on Ubuntu
      • installation with full disk encryption enabled by default
      • right now it uses a slightly customized version of GNOME as DE (with “normal”/traditional windows and optionally a tiling wm), but system76 is working on a Rust-based DE, named Cosmic DE
    • zybir@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      I’ve been using Pop for about 2 years. I have yet to run into an issue that I couldn’t fix. It’s the first distro that made ditching windows easy.

      • los_chill@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        1 year ago

        I feel the same coming from Mac. Things seem to just work. I’m not a Linux wiz so minimal headaches while learning to tinker make it perfect for me.

    • sntx@lemm.ee
      link
      fedilink
      arrow-up
      3
      ·
      1 year ago

      Single command to compile & install packages from many git repos

    • sntx@lemm.ee
      link
      fedilink
      arrow-up
      3
      ·
      1 year ago

      You get it for the low price of loosing all fun/motivation in setting up, customizing and mintaining machines with other distros

    • sntx@lemm.ee
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      A cool logo, meaningful rolling release version names and stickers

    • sntx@lemm.ee
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      Do it once, do it right. Save work be redeploying the same configuration (or submodules) on mutiple machines or the same machine multiple times.

    • sntx@lemm.ee
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      A great selection and amount of packages and modules to build/install/enable

    • loggy@infosec.pub
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 year ago

      I have been thinking to give NixOS a spin but feel like it’s above my brain capacity for me to handle. Do you also use homemanager and Flakes? Homemanager kinda makes sense (manage packages for non root users) but what does Flakes do?

      • fabian_drinks_milk@lemmy.fmhy.ml
        link
        fedilink
        arrow-up
        3
        arrow-down
        1
        ·
        1 year ago

        I am already trying it and I am still no expert. How I understand flakes is that it is a file with inputs, like nixpkgs and other flakes or repos you might depend on and some outputs that can be things like a nixshell with packages and environment variables, custom packages and configs like your NixOS configurations and home manager. When you use your flake for the first time, by entering a nix shell with nix develop, building a package with nix build, rebuild your NixOS system with nixos-rebuild --flake .#<hostname>, etc, nix will generate a flake.lock file that stores the hashes of all of your inputs and thus pinning the input versions. This means that if you ever run any of those commands again, you should get the same result because the inputs are pinned and the same version. If you want to update, you just run nix flake update and it will regenerate the flake.lock file with new hashes for the newest version. The advantage with flakes is that it is fully reproducible, even if one of your dependencies changes, because the hash is specified and centrally managed in the inputs of your flake.

        Nix flakes can be used for your NixOS system by adding the nixos configurations in the outputs of your nix flake and adding the dependencies like nixpkgs to the inputs. You can also combine it with home manager by either specifying it as a separate output or adding it as a nixos module inside the nixos configurations output. You just copy your existing nixos and home manager config to the folder with your flake and reference them inside the flake.nix. If you added home manager as a nixos module, you only need to run nixos-rebuild switch --flake <path-to-flake>.#<hostname> and it will automatically rebuild both your NixOS configuration and home manager configuration. You can then backup the folder with your flake and configurations by uploading them to GitHub for example.

        The best resource I found was this 3 hour video by Matthias Benaets: https://youtube.com/watch?v=AGVXJ-TIv3Y&feature=share7

        • loggy@infosec.pub
          link
          fedilink
          arrow-up
          2
          ·
          1 year ago

          Thanks a lot for the detailed answer. It does sound complicated haha. I should probably follow along the YT video. Thanks again!

  • linuxduck@nerdly.dev
    link
    fedilink
    arrow-up
    16
    arrow-down
    2
    ·
    1 year ago

    Manjaro. It just worked on any device I installed it on. And wifi just worked with no fiddling.

    Then I installed it on surface tablet. What didn’t work, I found kernel fixes I could implement.

    Of all the distros, for me, it was the easiest to use, install and manipulate!!

  • hexagonwin@lemmy.ml
    link
    fedilink
    arrow-up
    15
    arrow-down
    1
    ·
    1 year ago

    Slackware

    • the most rock stable distro imo. No systemd or snap stuff. Packages are almost (if not fully) vanilla version from upstream. Simple yet efficient unix-style approach to everything like package management, slackbuilds are really good too.
    • evadzs@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      1 year ago

      Besides Wiki and AUR that all Arch derivatives share, they have their own wiki that documents the changes they’re made to Arch and a very good forum for help

      • evadzs@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        1 year ago

        This really is my favorite Garuda feature - it’s saved my install more than once so that I can roll back a messy update, figure out what broke and why it broke, and then make sure the next update works

    • evadzs@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      1 year ago

      Fish shell by default with auto-complete previews as you type and lots of great aliases

    • evadzs@lemmy.world
      link
      fedilink
      arrow-up
      5
      ·
      1 year ago

      Nvidia driver installation options that correctly set the mode setting, dkms drivers installed ootb, common apps like GreenWithEnvy ootb, great Nvidia support

    • evadzs@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      1 year ago

      A lot of people think it’s just Arch with an installer and lots of bloat and a neon theme but it’s a lot more than that.

    • hobbsc@lemmy.sdf.org
      link
      fedilink
      arrow-up
      3
      ·
      1 year ago

      Mint

      Generally works in cases where Ubuntu would and you don’t have to deal with Canonical’s choices.

      • athlon@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        Yeah, but I rarely if ever leave those constraints, so it does not matter to me at all. Day to day, I use macOS anyway, and Mint only comes on my desktop PC.

  • gortbrown@lemmy.sdf.org
    link
    fedilink
    arrow-up
    16
    arrow-down
    3
    ·
    edit-2
    1 year ago

    Debian

    -Simple distro free of too much bloat without being too bare-bones

    -Stable, but can also be changed to be a bit more updated if you want that instead-