The Sovereign Forge

The Step-by-Step Beginner's Guide

Building a Sovereign Forge sounds intimidating when you are throwing around terms like "Threadripper" and "dual-GPU topology." But at its core, building an AI supercomputer is just snapping together adult Legos.

Everything is standardized to fit into very specific slots. If you can plug a lamp into a wall, you can build this node. This guide strips away the deep technical jargon and gives you the exact blueprint to purchase, assemble, and awaken your own air-gapped, local intelligence node.

Part 1: The Ultimate Shopping Cart

Before we start building, we need the parts. Stick to verified retailers like Micro Center, Newegg, Amazon, or B∧H Photo Video for high-end components to ensure solid return policies.

The Core Hardware

Component What to Buy Brands to Trust
CPU (The Brain) AMD Ryzen Threadripper PRO 7960X (24-core) or 7975WX (32-core) AMD (Exclusive)
Motherboard (The Skeleton) TRX50 Chipset Workstation Board ASUS Pro WS TRX50-SAGE WIFI
GPUs (The Muscles) 2x NVIDIA GeForce RTX 5090 NVIDIA FE, ASUS, MSI, Gigabyte
RAM (Short-Term Memory) 256GB DDR5 ECC Registered Memory (RDIMM) Kingston, G.Skill, Crucial
Storage (Long-Term Memory) 2x 4TB PCIe 5.0 (Gen5) NVMe M.2 SSDs Crucial, Corsair, Samsung
Power Supply (The Heart) 1600W+ 80+ Titanium ATX 3.1 PSU Seasonic, MSI, Corsair

The Tool Kit

Part 2: Power Prep

The Sovereign Forge pulls about 1,600 watts of power continuously under heavy AI workloads. That is like running a microwave on high, non-stop, for days. If your house isn't ready for this, you won't start a fire, but you will constantly trip your circuit breaker.

Check Your Breaker Box Most standard wall outlets are on a 15-amp circuit, which maxes out at 1,440 watts continuously. You need a dedicated 20-amp, 120-volt circuit (which safely handles up to 1,920W) or a 240-volt circuit. Go to your breaker box—if the switch for your office says "15", call an electrician to run a dedicated line. Do not attempt to bypass this.
The 12V-2x6 Cable "Click" Modern high-end GPUs use a specific power cable that funnels massive electricity through a very small plug. When you plug these into your RTX 5090s, it must click. If there is even a millimeter gap, the electricity will arc across the space, create extreme friction, and literally melt the plastic connector and your $2,500 graphics card. Push it in straight until you hear and feel the snap.

Part 3: The Motherboard Assembly

Before putting anything inside the metal computer case, build the "core" right on your desk. Set the motherboard directly on top of its cardboard box—do not build on carpet or a bare metal table.

  1. Seat the Threadripper CPU: Do not remove the CPU from its neon orange plastic sled. Use the included T20 Torx wrench to unscrew the CPU socket (labeled 3, 2, 1). Slide the orange sled into the rails, remove the clear plastic bottom, close the lid, and tighten the screws (1, 2, 3) until the wrench loudly clicks.
  2. Snap in the ECC RAM: Line up the off-center notch on the bottom of the RAM stick with the bump inside the motherboard slot. Push straight down firmly with both thumbs until you hear a sharp CLICK and the side clips lock.
  3. Lock Down the Gen5 SSDs: Remove the metal "M.2" heat shield. Slide the SSD stick into the tiny slot at a 30-degree upward angle. Gently push it flat and use your magnetic screwdriver to secure the tiny screw. Do not overtighten.

Part 4: GPUs and Cooling

Your Forge uses two RTX 5090s. Putting these side-by-side on air cooling will cause them to choke on their own heat. We use liquid cooling to prevent thermal throttling.

1. Slotting the Heavy Metal

  1. Open the PCIe Locks: Push down the plastic clips at the far right end of the first and third PCIe slots on your motherboard.
  2. Insert the First GPU: Line up the gold pins of the 5090 with the top PCIe slot. Ensure the metal bracket slides cleanly into the gap at the back of the case.
  3. Push Until it Snaps: Press down firmly and evenly on the top edge of the card until you hear a loud SNAP as the plastic clip locks around it.
  4. Lock the Bracket: Use case screws to secure the heavy metal bracket to the back of the case so the weight doesn't snap your motherboard.
  5. Repeat: Install the second RTX 5090 in the lower open slot.

2. The Plumbing (Liquid Cooling)

A direct liquid cooling loop has four basic parts: metal blocks on the chips, a radiator with fans to blow heat away, a pump to move the fluid, and tubes/fittings to connect it all.

The Foolproof Way: The MO-RA3
Building a loop inside a cramped case is frustrating. For a beginner, use an external radiator like the Watercool MO-RA3. It sits on your floor or desk, holding massive amounts of liquid and cooling surface area so your dual 5090s run ice-cold.

A massive Watercool MO-RA3 external radiator

Pro Tip: Use the EKWB Custom Loop Configurator online to auto-generate the exact blocks and fittings you need for your ASUS TRX50-SAGE and RTX 5090s.

Part 5: Installing the Operating System

The Sovereign Forge is a dedicated AI node, which means no Windows. Windows wastes memory on background tasks and graphical desktops. We use Ubuntu Server 24.04 LTS. It is completely "headless"—meaning no desktop interface—reserving 100% of your VRAM for the AI.

  1. Prepare the Flash Drive (On your normal PC): Download the Ubuntu Server 24.04 LTS .iso file from ubuntu.com. Download BalenaEtcher, open it, select the .iso file, and flash it to an empty USB drive.
  2. Boot the Forge: Plug the USB drive and an Ethernet cable (direct to your router) into the motherboard. Plug in a temporary monitor and keyboard. Turn the system on and rapidly tap F8, F12, or DEL to open the boot menu. Select your USB drive.
  3. The Installation: Follow the on-screen prompts. Select "Use an entire disk" and choose your NVMe SSD. When you reach the Profile Setup, name your server sovereign-forge.
CRITICAL STEP: SSH Setup During the installation, you will see a screen for SSH Configuration. You MUST press the Spacebar to check the box next to "Install OpenSSH server". This allows you to remotely control the Forge from your main laptop later so you can throw away the temporary monitor and keyboard.

Part 6: Installing the Engine (Drivers & Docker)

Once Ubuntu is installed and rebooted, leave the Forge turned on. Go to your normal laptop, open Terminal (Mac) or Command Prompt (Windows), and log into your Forge remotely by typing:

ssh admin@sovereign-forge

(Replace "admin" with the username you created. When you type your password, it will be invisible. Just type it and hit Enter.)

1. Install NVIDIA Drivers

Teach Ubuntu how to use your massive RTX 5090s, then reboot to lock it in:

sudo ubuntu-drivers install
sudo reboot

2. Verify the Hardware

After reconnecting via SSH, check the heartbeat of your GPUs:

nvidia-smi

If it worked, a text grid will appear showing both RTX 5090s awake and ready.

3. Install Docker and NVIDIA Container Toolkit

We put AI software inside isolated Docker containers so it doesn't break the main system. First, install Docker:

curl -fsSL https://get.docker.com | sh

Next, build the bridge between Docker and your GPUs (copy and paste this entire block at once):

curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
&& curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | \
sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list

sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit
sudo systemctl restart docker

Part 7: Waking Up the AI

We will use Ollama to automatically download and serve the AI model directly from your GPUs.

curl -fsSL https://ollama.com/install.sh | sh

Now, download Meta's Llama 3 model into your 64GB of VRAM:

ollama pull llama3.2

The Cognitive Daemon

A Sovereign Forge runs a continuous cycle of reading, thinking, acting, and resting. Type nano daemon.py in your terminal to open a text editor, paste the Python script below, and press Ctrl+O then Enter to save, followed by Ctrl+X to exit.

import time
import subprocess

def ingest():
    print("\n[Phase 1: Ingest] Reading environment and internal state...")
    return "You are a Sovereign Forge node. Generate a one-sentence status update on your operational readiness."

def synthesize(prompt):
    print("[Phase 2: Synthesize] Processing via 64GB VRAM LLM cluster...")
    result = subprocess.run(['ollama', 'run', 'llama3.2', prompt], capture_output=True, text=True)
    return result.stdout.strip()

def actuate(thought):
    print("[Phase 3: Actuate] Writing synthesized thought to local log...")
    with open("forge_memory.txt", "a") as f:
        f.write(thought + "\n")
    print(f"-> SAVED: {thought}")

def sleep_cooldown():
    print("[Phase 4: Sleep] Cooling down for 60 seconds to prevent thermal runaway...\n")
    time.sleep(60)

print("Starting Sovereign Forge Cognitive Daemon. Press Ctrl+C to stop.")

while True:
    try:
        context = ingest()
        response = synthesize(context)
        actuate(response)
        sleep_cooldown()
    except KeyboardInterrupt:
        print("\nDaemon terminated by admin.")
        break

Take a breath. It is time to turn it on. Type this final command:

python3 daemon.py

You will hear the fans spin up as the Forge pulls hundreds of watts, generates its first independent thought, saves it to your SSD, and then powers down to rest. You have successfully built a Sovereign node.