My budget is ~500 Euro.

I haven’t built a PC in 10 years, I gave no idea where to start.

It will mostly be used to run Nextcloud, Minecraft Server and some future homelab projects.

I’m thinking of using this for the case https://www.the-diy-life.com/introducing-lab-rax-a-3d-printable-modular-10-rack-system

Where do I start? What CPU or motherboard would you recommend? I want it to be somewhat future proof and also act as a NAS

  • @sugar_in_your_tea@sh.itjust.works
    link
    fedilink
    English
    0
    edit-2
    6 hours ago

    Yeah, I really don’t know what constraints OP is working under. Here are mine:

    • >8TB max capacity - lots of Blu-ray rips, which grows every year (currently 3-4TB, grows by 1TB or so per year)
    • RAID mirror - my media isn’t backed up, so this reduces my need to re-rip if a drive dies
    • no hard requirement on speed, I only need 1-2 concurrent streams, and a single HDD is probably sufficient for that

    If I was building today, I’d probably still go HDD because few mobos have >2 NVMe slots, and NVMe gets expensive at higher capacities, especially if RAID is on the table.

    If my NAS was 100% backed up, I wouldn’t need RAID and I would probably use NVMe to save on space and complexity.

    bcachefs

    Why tho? Just use btrfs or zfs, they’re proven in production, and have a lot of good documentation.

    • Shit, that’s a lot of storage. K.

      I’ve lived on btrfs for years. I love the filesystem. However, RAID had been unreliable for a decade now, with no indication that it will ever be fixed; but most importantly, neither btrfs not zfs have prioritized multi-device support, and bcachefs does.

      You can configure a filesystem built from an SSD, a hard drive, and a USB drive, and configure it so that writes and reads go to the SSD first, and are eventually replicated to the hard drive, and eventually eventually to the USB drive. All behind the scenes, so you’re working at SSD speeds for R/W, even if the USB hasn’t yet gotten all of the changes. With btrfs and zfs, you’re working at the speed of the slowest device in your multi-device FS; with bcachefs, you work at the speed of the fastest.

      There’s a lot in there I don’t know about yet, like: can it be configured s.t. the fastest is an LRU? But from what I read, it’s designed very similar to L1/L2 cache and main memory.