I haven’t found any good information on which distro to use for the NAS I am building. Sure, there are a few out there. But as far as I can tell, none are immutable and that seems to be the new thing for long term durability.

  • kevincox@lemmy.ml
    link
    fedilink
    arrow-up
    5
    ·
    9 months ago

    I use NixOS for this. It works wonderfully.

    Immutable means different things to different people, but to me:

    1. Different programs don’t conflict with each other.
    2. My entire server config is stored in a versioned Git repo.
    3. I can rollback OS updates trivially and pick which base OS version I want to use.
  • dan@upvote.au
    link
    fedilink
    arrow-up
    3
    ·
    9 months ago

    I’m using Unraid, which is built on top of Slackware. It has a very nice Docker web UI for apps like Jellyfin. It’s not immutable though. I don’t know of any NAS-specific OSes that are immutable.

  • giloronfoo@beehaw.org
    link
    fedilink
    arrow-up
    2
    ·
    9 months ago

    Would Truenas fit as immutable? I guess it doesn’t stop you from changing things, but doing so might break the next update.

    Configuration can be exported. Disaster resolution of fresh install and restore configuration has worked for me. No data loss and even the Virtual Machines started right back up.

    • xia@links.hackliberty.org
      link
      fedilink
      English
      arrow-up
      1
      ·
      9 months ago

      One could argue that they do “try to stop you”… technically… by disabling the execute bit on software update tools (like apt & deb)… but I see that more as a gentle reminder and acknowledgement of your ownership of the machine, as they could have easy just not had those tools present at all.

  • BCsven@lemmy.ca
    link
    fedilink
    arrow-up
    1
    ·
    9 months ago

    MicroOS from OpenSUSE. nice thing is initial config at boot is similar to nix config where you can set everything like network, user, passwords, installed packages, etc. this is done via ignition and combuation files. Has a handy file creator to make life . https://opensuse.github.io/fuel-ignition/edit

  • anamethatisnt@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    9 months ago

    What functionality do you want from your NAS? If it’s simple NFS and Samba then I imagine you can choose whatever you want really.

      • anamethatisnt@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        9 months ago

        If the software you want to run has flatpak then I imagine you can try out Fedora Silverblue, Jellyfin do have a flatpak.

        Personally I run my Jellyfin on a virtual Debian Bookworm server with transcoding off, my Jellyfin clients don’t need the help.
        I always clone my Jellyfin server before apt update && apt upgrade to be able to rollback.
        Oh, and my NAS (network attached storage) isn’t on the same machine, my Jellyfin server use Samba and /mnt/media/libraryfolders, so cloning it is quick and easy.

      • Pantherina@feddit.de
        link
        fedilink
        arrow-up
        2
        ·
        9 months ago

        It works great, after dealing with lots of the opinionated stuff, adding a userns variant, making Flatpaks work, disabling CUPS instead of removing it etc it is now very usable on the Desktop.

        Server should just be as good. Use Podman for containers, installing Docker will weaken the security I guess.

  • ShortN0te@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    9 months ago

    As of my understanding, immutable systems are useful for Devices that are more bound to change, like a Desktop you actually use to install programs try out things and so on.

    I do not see much benefit here for a stable server system. If you are worried about stability and uptime, a testing system does a better job here, IMHO.

    • uzay@infosec.pub
      link
      fedilink
      arrow-up
      1
      ·
      9 months ago

      Immutable systems are useful for separating the system and application layers and to enable clean and easy rollbacks. On servers the applications are often already separated anyway through the use of container technologies. So having atomic system updates could enable faster and less risky security patching without changing anything about how applications are handled.

    • FutileRecipe@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      9 months ago

      As of my understanding, immutable systems are useful for Devices that are more bound to change, like a Desktop…I do not see much benefit here for a stable server system.

      This logic is kind of backwards, or rather incomplete. Immutable typically means that the core system doesn’t change outside of upgrades. I would prioritize putting an immutable OS on a server over a desktop if I was forced to pick one or the other (nothing wrong with immutable on both), simply because I don’t want the server OS to change outside of very controlled and specific circumstances. An immutable server OS helps ensure that stability you speak of, not to mention it can thwart some malware. The consequences of losing a server is typically higher than losing a desktop, hence me prioritizing the server.

      In a perfect world, you’re right, the server remains stable and doesn’t need immutablitiy…but then so does the desktop.

      • Dran@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        9 months ago

        Virtual machines also exist. I once got bit by a proxmox upgrade, so I built a proxmox vm on that proxmox host, mirroring my physical setup, that ran a debian vm inside of the paravirtualized proxmox instance. They were set to canary upgrade a day before my bare-metal host. If the canary debian vm didn’t ping back to my update script, the script would exit and email me letting me know that something was about to break in the real upgrade process. Since then, even though I’m no longer using proxmox, basically all my infrastructure mirrors the same philosophy. All of my containers/pods/workflows canary build and test themselves before upgrading the real ones I use in my homelab “production”. You don’t always need a second physical copy of hardware to have an appropriate testing/canary system.

        • Nimrod@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          9 months ago

          I really like this strategy. I currently use proxmox for my home server needs, but I am curious what you use now instead?

          • Dran@lemmy.world
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            9 months ago

            I have condensed almost all of my workflows into pure bash scripts that will run on anything from bare metal to a vm to a docker container (to set up and/or run an environment). My dockerfiles mostly just run bash scripts to set up environments, and then run functions within the same bash scripts to do whatever things they need to do. That process is automated by the bash scripts that built my main host. For the very few workflows I have that aren’t quite as appropriate for straight docker (wireguard for example) I use libvirt to automate building and running virtual machines as if they were ephemeral containers. Once the abstraction between container and vm is standardized in bash, the automation doesn’t really need to care which is which, it just calls start/stop functions that change based on what the underlying tech is. Because of that, I can have the canary system build and run containers/vms in a sandbox, run unit tests, and return whether or not they passed. It does that via cron once a week and then supplants all the running containers with the canary versions once unit tests pass.

            Basically I got sick of reinventing the wheel every time a new technology came out and eventually boiled everything down into bash so that it’ll run on anything it needs to. Maybe podman in userland becomes the new hotness next year, or maybe I run a full fat k8s like I do at work. Pure bash lets me have control over everything, see how everything goes together, and make minor modifications to accommodate anything I need it to.

            It sounds more complicated than it really is, It took me like a week of evenings to write and it’s worked flawlessly for almost a year now. I also really really really hate clicking things by hand lol, so I automate anything I can. Since switching off proxmox, this is the first environment that I have entirely automated from bare-metal to fully running in a single command.

            I’m incredibly lazy; it’s one of my best qualities.

  • mholiv@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    9 months ago

    I would think that any immutable linux distribution would be suitable. Just configure it with the services that you want. Is there any special need that you specifically need?

    • WetBeardHairs@lemmy.mlOP
      link
      fedilink
      arrow-up
      0
      ·
      9 months ago

      Honestly I had never built an NAS and installed an OS on it before. I’ve only ever used the junk that ASUSTOR puts out and I want to have control over things. So a good part of the reason I asked on here was to see what other people had done and why.

      • mholiv@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        9 months ago

        Just think of the NAS like a desktop that you ssh into. The only difference is that you install the server version of the distro. If you know how to use a desktop Linux box and configure it via the command like you can do so with a server. It will be the same except over ssh.

        Hardware wise, normal desktop parts are good enough to build a NAS. You don’t need to buy anything special that is NAS specific. The only exception might be the case. If you want a lot of storage the case should be able to accommodate that. Some desktop cases don’t have 3.5” drive slots anymore.