eRacks Systems Tech Blog

Open Source Experts Since 1999

eRacks NAS12 2U rackmount NAS server, front view with twelve hot-swap drive bays
Standard drives, ZFS, your choice of operating system. The apps are whatever you run.

An XDA Developers writer published a piece last week that we could have written ourselves. He kept his Synology NAS (network-attached storage: a box of drives on your network that serves files and apps) and walked away from almost every app Synology ships with it. His photos moved to Immich, his music to Navidrome, his movies to Plex and Jellyfin, his documents to Paperless. All of them run in Docker, a way to package an app with everything it needs so it runs the same on any Linux machine.

His reasons are specific. Synology Photos, in his words, is “pretty dated”: no major new features in a while, and missing the GPS tagging, import workflows and shared libraries Immich has, with a mobile backup he found less reliable. Synology’s music app is “not very good at all”. And Synology discontinued its own video streaming app, which leaves a basic DLNA server as the only first-party option.

We have been saying this for years. It is worth saying why.

A NAS is two things

Every NAS is storage plus the apps that use it. Appliance vendors sell the two as one product, and for a while that was a fair trade: the apps were the reason to buy the box. Docker ended that. The open-source apps now move faster than the vendors’ own, which is the writer’s first reason, and because they are containers, they do not care which hardware they run on.

The XDA writer makes the point himself. His apps are “as independent as possible”, so if he moves from Synology to another brand, or to his own server, Immich comes with him. A proprietary app cannot make that promise, and neither can a vendor that decides which of its own apps survive the next release.

Once the apps are open, the box is just storage. And storage should be open too.

What open storage looks like

This is how we build NAS systems, and have for a long time:

  • ZFS by default. ZFS is an open-source file system that checksums every block, so it detects and repairs silent corruption instead of serving it back to you. Our NAS line defaults to RAIDZ2, dual parity: any two drives can fail without losing data.
  • The drives talk to ZFS directly. We offer an HBA (host bus adapter, the card the drives plug into) in IT mode, which passes each drive straight through instead of hiding it behind a hardware RAID controller. ZFS sees the real disks and their health.
  • Standard NAS drives. Our current default is the 24TB Seagate IronWolf Pro, a CMR drive (conventional magnetic recording, the kind that behaves well in a rebuild), bought in the channel like any other part. If a drive fails in year four, you buy another one anywhere.
  • Your choice of operating system. Ubuntu LTS by default, or Debian, TrueNAS Community Edition, OpenMediaVault and others. The data outlives the choice: a ZFS pool exported from one machine imports on another running a current OpenZFS.
  • Sizes that fit the job. From NAS4, a 1U four-bay unit, to NAS100, 102 bays in 4U, plus the QUIET3 for a home or an office where a rackmount fan would be too loud.

The same apps, without the vendor in the middle

Immich, Jellyfin, Plex, Navidrome and Paperless run on any of these systems exactly as they run on the XDA writer’s Synology. The difference is what sits underneath: an operating system you can update on your schedule, a file system you can move, and hardware with no vendor deciding which parts or apps you may use. Name the apps you want and we install and test them before the system ships, the same way we set up TrueNAS with Jellyfin on a quiet media server this month.

To be fair to Synology: if you want an appliance you never think about, and you are happy with its apps, it is a reasonable buy. The writer still uses his as the backbone of his setup. But if you are already running your own apps, as he is, part of what the appliance price pays for is software you have stopped using.

Where to start

The full NAS line is configurable online, and our July post covers how we re-verified every default drive and part against this year’s shortages. The XDA article is here.

Tell us what you store and which apps you run, and we will size it. Write to info@eracks.com, or start with a quote request.

September 24th, 2026

Posted In: NAS, News

Tags: , , , , , , , , ,

Leave a Comment

A stack of eRacks 1U rackmount servers on the build bench
Most of what leaves our bench runs virtual machines. The hypervisor is usually the kernel that is already there.

Last week we posted about IncusOS, the new immutable operating system built around Incus, and we named the hypervisors people compare it with: Proxmox, XCP-ng, ESXi. A reader could come away thinking those four are the menu. We left out the one we have recommended, installed and run ourselves since 2007. That is KVM, the Kernel-based Virtual Machine, on Ubuntu. This post is the correction, and the reasons.

KVM is the kernel, not a product

A hypervisor is the layer that lets one physical machine run several virtual machines (VMs), each with its own operating system. KVM is unusual among hypervisors because it is not a separate operating system you install under Linux. It is part of Linux. It arrived in kernel 2.6.20, released on 5 February 2007, as a driver for the hardware virtualization extensions in Intel and AMD processors, and it has shipped in every mainline kernel since. Ubuntu, Debian, Red Hat, SUSE and the rest carry it; QEMU provides the machine emulation around it. libvirt, with virsh and virt-manager, is the management layer most guides assume on top of that pair, and we will come back to it.

That placement matters more than any feature list. The virtualization code gets the same scrutiny, the same security updates and the same hardware enablement as the kernel it lives in. When a new processor generation lands, KVM support tends to land with it, in the same release. There is no second vendor to wait on and no second support contract.

The products you compare are mostly KVM underneath

This is the part the comparison lists hide. Proxmox VE runs its virtual machines on KVM and QEMU; its containers use LXC. Incus, the runtime that IncusOS exists to run, uses QEMU and KVM for its virtual machines as well. When people weigh Proxmox against IncusOS, they are choosing a management layer, an update model and a community. The hypervisor doing the work is the same kernel module in both cases. ESXi is the exception on that list: it brings its own kernel, and since the licensing changes of the last two years it is also the one people are most often asking us how to leave.

So the honest version of “which hypervisor” for most of our customers is “which management layer on top of KVM”. Proxmox gives you a web console, clustering and a large community. IncusOS gives you an appliance: an immutable image with A/B partitions for atomic updates and rollback, UEFI Secure Boot and TPM 2.0 measurements, disk encryption backed by the TPM, a stable channel that updates at least weekly and a testing channel that updates daily, and a Migration Manager for moving machines off VMware. Plain Ubuntu Server with KVM, libvirt and cockpit gives you the least opinionated option of the three: a general purpose Linux you already know how to administer, that also happens to be an excellent hypervisor host.

Why we default to Ubuntu plus KVM

We build custom Linux rackmount servers, and most of them leave here as virtualization hosts of one kind or another. Our default recommendation has been Ubuntu with KVM for a long time, for reasons that have not changed much:

  • One system to know. The host is a normal Ubuntu Server. Storage (ZFS or LVM, your choice), networking (a bridge, or Open vSwitch when you need it), backups, monitoring and updates are the same tools you use everywhere else. Nothing about the hypervisor is a separate skill.
  • Long term support with dates on it. Ubuntu LTS releases carry five years of standard support, ten with Ubuntu Pro. A virtualization host is exactly the kind of machine you want to leave alone for years.
  • Hardware enablement on the kernel’s schedule. New CPUs, new NICs, new NVMe controllers: KVM support arrives with the kernel, and Ubuntu’s hardware enablement kernels bring it to the LTS release you are already on.
  • No lock in and no license event. Everything in the stack is open source. There is no per socket fee, no feature tier and no vendor that can change the terms under you. The last two years of virtualization news have been a long argument for that point.
  • The management layer is your choice, and it can change later. Cockpit or virt-manager if you like a console, Proxmox or Incus if you want a platform, or nothing but QEMU and a few scripts, which is what we run ourselves. The VM disk images are standard qcow2 or raw files. We have moved machines between all of these without reinstalling a guest.

A note on libvirt

Most KVM guides assume libvirt, so we should say where we stand. We have never liked it. It puts an XML document between you and every machine, and the XML sit-ups1 that come with that obscure and complicate what QEMU is actually doing underneath. We prefer to talk to QEMU directly, through its monitor and console, and our own tooling does exactly that. virsh, libvirt’s command line, became somewhat useful years later, but it still drags libvirt’s baggage behind it, and by the time it did we had long since built what we needed. If you want libvirt on a machine we build, you get it, installed and tested. We will just not pretend to love it.

eVirt: what we run our own machines on

Because we have been doing this since the year KVM landed in the kernel, we ended up with our own small framework for it. We call it eVirt, and the current version is the fourth. It is how our own production web servers, mail servers and lab machines are defined and launched, and it has been in active use internally since 2007. We have not packaged it as a product. We would consider doing that if there is interest, and we can install it now on a consulting basis.

The idea is small on purpose. Each machine is a short YAML file kept next to the project it serves: how much CPU and memory, which disks and how large, which bridge it sits on, and its fixed address. One command turns that file into a running virtual machine: it fetches the Ubuntu cloud image, resizes the disk, seeds the first boot with cloud-init, attaches the network and starts it under KVM, speaking to QEMU’s own monitor rather than going through libvirt. Rebuilding a host is the same command run again, which is how we rehearse and then execute things like a production cutover: the new machine is one entry away, and the address moves in the file. The QEMU guest agent goes into the VMs where we want it; the rest run with no agent at all. Nothing proprietary lives in the image, so a machine built this way is an ordinary Ubuntu VM that any other tool can take over afterwards.

A personal note, and a follow-up post to come: I attended the first KVM Forums, in Tucson in 2007 and Napa in 2008, met Avi Kivity and several of the kernel developers who wrote KVM, learned the architecture from the people who designed it, and came home to start looking past libvirt, which is where eVirt began. That story, and what it taught us, is the next post.

We mention eVirt for one reason: it is the shape of what KVM on Ubuntu makes possible. A tiny layer of automation on top of tools that are already in the distribution gets you reproducible infrastructure without adopting a platform. Plenty of shops arrive at something similar with Terraform providers, Ansible roles or cloud-init alone. The hypervisor underneath is the same.

What we install for customers

If you order a virtualization host from us and do not specify a platform, you get Ubuntu Server LTS with QEMU and KVM installed and tested, ZFS or LVM laid out for VM images, a bridge on the interfaces you name, and the management layer you ask for: libvirt with cockpit or virt-manager, Proxmox, Incus, IncusOS or XCP-ng. Ask about eVirt if you would rather have what we run ourselves. We have no stake in which one you pick; we build the hardware and the storage underneath it, and every one of these runs on hardware we ship today. The only combination we talk people out of is the one that comes with a license invoice they did not ask for.

Questions about a virtualization build, or about moving off a platform you no longer want to pay for? Write to us at info@eracks.com, or start with a quote request.

1 “XML sit-ups” is a famous programming phrase coined around 2004 to 2005 by David Heinemeier Hansson (DHH), the well-known developer and entrepreneur who created Ruby on Rails. It headlined the framework’s original blurb: “Rails is a full-stack, open source web framework in Ruby for writing real-world applications with joy and less code than most frameworks spend doing XML sit-ups” (quoted in XML.com, August 2005). The target was the enterprise software of the day, J2EE and .NET above all, where you mapped databases, wired dependencies and configured every layer in massive, redundant, error-prone XML files before writing a line that did anything, with all the pointless parsing, generation and not-quite-valid states that XML as a configuration format brings. DHH was still using the phrase a decade on, recalling “the practice of 1000s of lines of XML configuration situps that were common at the time” in his 2016 Slashdot interview.

September 20th, 2026

Posted In: News, servers, Technology

Tags: , , , , ,

Leave a Comment

Two eRacks storage servers on the build bench
Two eRacks servers on the bench. The rule for drives holds for memory: buy the slots, fill them when the market is right.

For thirty years the answer to “my machine needs more memory” was the same: open the case, push a stick into an empty slot. That answer is splitting three ways, and the split matters more than the speeds.

Three futures

Sealed. High Bandwidth Memory (HBM) is not a module at all. DRAM dies are stacked on top of each other, wired vertically through the silicon, and mounted on an interposer (a thin silicon layer that carries the wiring) millimeters from the processor, inside the same package. The bus is a thousand bits wide instead of 64, the distance is a fraction of an inch instead of several, and the result is the bandwidth that makes an AI accelerator an AI accelerator. NVIDIA’s H100 and Blackwell parts are built this way, and Intel put HBM on a Xeon (the Xeon Max) for the same reason. The trade is absolute: the memory is soldered into the package, so the amount you buy on day one is the amount you own on day one thousand. The industry name for this kind of assembly, several chips from several processes glued into one package, is System in Package (SiP). Your watch is one. So is the processor in the largest AI clusters.

Flat. JEDEC, the standards body behind every DIMM you have ever installed, published the CAMM2 standard (JESD318) in December 2023. A CAMM2 (Compression Attached Memory Module) is a flat card that screws down onto a bed of contacts instead of standing in a slot, which puts the memory closer to the processor and keeps the signal clean at higher speeds. The low-power version, LPCAMM2, is the interesting one: laptop makers used to solder LPDDR memory to the board to get its speed and battery life, and that killed upgrades. LPCAMM2 puts the same memory on a replaceable card. Lenovo’s ThinkPad P1 Gen 7 ships with up to 64GB of LPCAMM2 at LPDDR5X-7500, and it can be changed with a screwdriver. Desktop CAMM2 boards have been shown by the motherboard makers; volume is still small. The catch is that a CAMM2 is one module carrying both memory channels, so an upgrade means replacing it rather than adding a second stick.

Fabric. In servers, memory is leaving the motherboard. Compute Express Link (CXL) runs over the same physical lanes as PCIe and lets a system treat memory the way it treats a drive: something you add in a slot. A CXL memory expander is a card, or a box, of ordinary DDR5 that the processor sees as more RAM. Current AMD EPYC and Intel Xeon platforms support it, controller silicon is shipping, and the standard has kept moving; the CXL Consortium’s current specification is 4.0. Later revisions describe pooling, where a rack shares one large bank of memory and hands it to whichever server needs it, so capacity stops being stranded inside boxes that are not using it.

Why this is a purchasing question, not a spec-sheet question

We track memory prices every day because we quote servers every day. Measured as the best street price per gigabyte across the major memory lines, March 2026 to September 2026:

Memory price per gigabyte by month, March to September 2026: DDR5 server RDIMM, DDR5 desktop, DDR4 server RDIMM, DDR4 desktop
Median of the best street price per gigabyte across the major memory lines in each class, by month, from our daily tracking (March 16 to September 17, 2026).
  • DDR5 server memory (ECC RDIMM): $24.37 to $31.05 per GB, up 27 percent; the best available price went from $14.17 to $26.75, up 89 percent.
  • DDR5 desktop memory: $12.19 to $14.58 per GB, up 20 percent.
  • DDR4 server memory (ECC RDIMM): $7.44 to $5.56 per GB, down 25 percent.
  • DDR4 desktop memory: $7.19 to $6.22 per GB, down 13 percent.

Two things follow. First, the memory you did not buy in March costs a third more today, and the cheap end of the market has closed up. Second, the previous generation is being liquidated: DDR4 server memory now costs a seventh of DDR5 per gigabyte. For a file server, a backup target, or a build server, where capacity matters and bandwidth does not, a DDR4 platform with its slots filled is the best value on the table this year.

In a sealed design none of this is available to you. You pay the day-one price for the day-one capacity, and a shortage or a glut in the memory market changes nothing about the machine you own. In a slotted design, or a fabric design, the market is your friend as often as your enemy: you buy the slots now, you fill them when the price is right.

What we do about it

Every quote we write shows the board’s slot count next to what the configuration fills, so the upgrade path is visible before the order rather than discovered after it. Some customers max the memory on day one, which is the right call for a machine with a known job; the AMD EPYC 9005 boards we build on carry 24 DIMM slots and up to 6TB, so there is usually room either way. The memory line in every quote is priced at that day’s street price from the same tracking above, so a customer who asks for 256GB today and 512GB in six months pays the market twice, not our guess once. And as CXL memory expanders reach the channel, they are quotable on the EPYC 9005 and Xeon 6 platforms as a third way to add capacity without touching a socket.

Sealed memory is the right design for an accelerator, where bandwidth is the whole point. For everything else, we would rather sell you the slots.

Prices are our own daily tracking of the lowest street price per gigabyte for each major memory line at Newegg, taken as the median across lines in each class; March 2026 versus September 2026.

September 17th, 2026

Posted In: News, servers, Technology

Tags: , , , , , , , , ,

Leave a Comment

eRacks/AINSLEY dual Intel Arc Pro B70 AI server, top off
eRacks/AINSLEY: two Intel Arc Pro B70s, 64GB of GPU memory, built and benchmarked on our bench.

On September 4, Anthropic published the first complete, computer-checked proof of Fermat’s Last Theorem. Claude wrote it in Lean, a programming language built so a computer can verify every step of a mathematical argument instead of a human reviewer. Eleven days, largely on its own, 13 million lines, about 29,500 intermediate theorems along the way, and nothing assumed beyond Lean’s three standard axioms. Andrew Wiles’s 1995 proof ran 129 pages and took months of expert review to check.

I read that as a hardware story.

Eleven days of work, not a chat reply

The interesting part is not that a model knew number theory. It is that a machine did eleven days of sustained, structured work, and another machine checked every line of it. That is the shape of job we spec servers for now: long-running agents that read, write, test and retry against your own documents and code, not a question-and-answer box.

The frontier models live in their makers’ datacenters. What you can own is the open-weight class right behind them (Qwen, Llama, DeepSeek, Gemma), running on hardware you control, on your own documents, with no per-token bill and nothing leaving the building.

What that class of model does on a server you can buy

On our bench, a dual Intel Arc Pro B70 server runs Qwen3-14B at 54 tokens per second and Qwen3.6-27B at 26 (a token is about three quarters of a word), with the models resident in 64GB of GPU memory. The measurements, the software stack and the three power-management fixes it took to get there are in our benchmark write-up.

The money

Run the arithmetic our public rent-versus-own calculator uses (24 hours a day, 15 cents per kWh, $1,200 a year of overhead, a three-year payback) and an eRacks/AINSLEY at $21,395 pencils out against an AI bill of about $800 a month. A team of ten on $100 seats is $1,000 a month, forever. The calculator takes your own numbers, and every field is editable.

Every eRacks server is built to order, burned in, and benchmarked before it ships, with the numbers in the box. If you are sizing a machine for this kind of work, the AINSLEY configurator is the place to start, and a quote request gets a reply within one business day.

Joseph Wolff, Founder and CTO, eRacks Open Source Systems

September 9th, 2026

Posted In: AI Servers, News

Tags: , , , , , , , ,

Leave a Comment

A 36-bay eRacks storage server on the bench, drive LEDs lit
Thirty-six bays. What each terabyte in it costs has moved a long way since March.

A sale landed in our feed this week: thirty dollars off an 8TB Barracuda. Nice, if you need one drive. It is also completely the wrong number to be watching.

We price storage servers every week, so we track drive street prices daily and keep the results on a public page. The metric that matters is not the sticker on any one drive, it is dollars per terabyte, and over the last six months it has gone one direction.

Line chart of the lowest price per terabyte tracked each month from March to August 2026 for five drive lines, all trending upward
The lowest price per TB we recorded in each month, by drive line. Every line is up.

What actually happened

These are the best prices we found in each month, not averages, so they are the floor rather than the typical ask:

Lowest tracked price per terabyte, March vs August 2026
Drive line Class March 2026 August 2026 Change
Seagate Barracuda Desktop $16.25 $31.25 +92%
WD Red Pro NAS $24.84 $41.22 +66%
Seagate IronWolf Pro NAS $21.78 $33.75 +55%
WD Gold Enterprise $29.79 $44.17 +48%
Toshiba MG Enterprise $22.17 $30.64 +38%
Seagate Exos SATA Enterprise $24.33 $27.92 +15%

The consumer line moved most, which is the tell. Desktop drives are the shock absorber of the storage market: they are the first to get discounted when supply is loose and the first to be repriced when it is tight. The enterprise lines with long supply contracts behind them moved least.

Why

The same squeeze that took DDR5 memory prices up this year is reaching spinning storage. AI datacenter buildouts are consuming manufacturing capacity and inventory across the board, and hard drives are being pulled into it as the cheap tier behind all those flash arrays. Meanwhile the drives most people actually buy, the 8TB to 16TB middle, are the ones the shortage bites hardest, because that is where consumer and datacenter demand overlap.

What this means if you are buying storage

Watch $/TB, not the discount. Thirty dollars off an 8TB drive that has already gone up sixty dollars per terabyte since spring is not a deal, it is a smaller increase. Divide the price by the capacity, every time, and compare that number to what the same class cost you last quarter.

The sweet spot moves. The cheapest terabyte is not always in the biggest drive, and in a shortage it moves around by the week. We publish the current best price per TB by capacity and by line, updated daily, at eracks.com/sweet-spots/drives, with the trend lines at the trends view. It is the same data we quote from, so you can check our arithmetic.

Buy the array you need now, not the one you will need in three years. The usual advice, buy extra capacity because it is cheap, assumes prices fall. They are not falling right now. Size the array for real growth, leave bays free, and add capacity when the market gives you a better number rather than paying today’s price for tomorrow’s data.

Fewer, larger drives still wins on the other costs. Even with prices up, a 24TB drive costs less per terabyte to power, cool, and rack than three 8TB drives, and it leaves bays open. The capacity ceiling keeps moving too: the largest drive in our catalog was 14TB in 2019, and it is 32TB today.

How we track it

A scraper walks the drive lines we actually build with, several times a day, records what each capacity costs from real listings, and computes price per terabyte. Every server quote we send is priced from that table on the day we send it, which is also why our quotes carry a refresh note: in a market moving this fast, a four-week-old number is fiction.

If you are sizing a storage server, a rackmount NAS, an all-flash array, or a media and video server, tell us the usable capacity you need and how fast it grows. We will size it against today’s numbers, show you the per-TB math, and tell you if waiting a quarter is the better move.

Common questions

Should I buy now or wait? Prices are not falling right now, so waiting is a bet, not a saving. Size the array for the growth you can actually forecast, leave bays free, and add capacity when the per-terabyte number improves.

Are enterprise drives worth the premium in a shortage? The gap narrowed: Toshiba MG enterprise at $30.64 per TB is now close to what a consumer Barracuda costs at $31.25, and the enterprise drive carries the longer warranty and the workload rating. When consumer pricing catches up to enterprise, buy enterprise.

Do these numbers include the drives in your servers? Yes. Every storage server we quote is priced from this same table on the day we quote it.

Scope note: our own daily tracking began in March 2026, so the chart is six months of first-hand data rather than a multi-year index. The capacity figures come from our catalog history.

September 3rd, 2026

Posted In: News, Storage

Tags: , , , , , , , , , ,

Leave a Comment

Next Page »