All Articles

Dive into articles, tutorials and expert insights covering modern development, architecture, design and infrastructure.

Game Server Performance: Bare Metal vs Virtual Machines

July 08, 2026

by Clay Berndt

Game Server Performance: Bare Metal vs Virtual Machines

Bare metal wins on the two numbers that decide whether a game server feels good: worst-case tick time and worst-case latency. A single-tenant VM on hardware you control gets close. An oversold multi-tenant VPS is where fixed-tick simulation falls apart, because a vCPU scheduled a few milliseconds late is a missed tick every player sees as rubber-banding. This guide covers what a hypervisor adds to a tick loop, why the 95th-percentile tick time matters more than average throughput, how to measure steal time and MSPT on your own server, and when a VM is still the right call.

Game Servers

Read more

How to Set Up Your Own Proxmox VE Server

July 20, 2026

by Jesse Schokker

How to Set Up Your Own Proxmox VE Server

You have a bare-metal box and you want it to run virtual machines and containers instead of a single operating system. Proxmox VE turns that raw hardware into a full virtualisation platform: a Debian-based host with a web UI, KVM full virtualisation, LXC system containers, built-in storage and networking, and no per-socket hypervisor licence to buy. This guide walks the whole path from a blank server to a working host. We install Proxmox VE 9.2 from the ISO, fix the APT repositories and update, understand the default bridge networking, look at storage, build a first VM and a first LXC container, and finish with basic hardening. By the end you will have a production-ready single node you can grow into a cluster later.

Virtualization

Read more

Proxmox Backup Strategies: Snapshots, vzdump and Proxmox Backup Server

July 13, 2026

by Jesse Schokker

Proxmox Backup Strategies: Snapshots, vzdump and Proxmox Backup Server

Proxmox VE ships everything you need to never lose a VM, and the defaults use almost none of it. Snapshots that live on the same disk as the VM, one-off vzdump archives with no retention plan, and no restore testing is how virtualisation hosts actually get hurt. This guide builds the real strategy in three tiers: what snapshots are actually for, scheduled vzdump done properly (modes, retention, fleecing), and when Proxmox Backup Server's deduplication, verification, and offsite sync become worth a second box.

Virtualization

Read more

What Is Proxmox VE? Choosing a Bare-Metal Hypervisor

July 08, 2026

by Jesse Schokker

What Is Proxmox VE? Choosing a Bare-Metal Hypervisor

Proxmox VE is a free, open-source virtualisation platform that runs directly on a physical server, turning one machine into a host for full virtual machines and lightweight containers. But it is not the only bare-metal hypervisor: VMware ESXi, XCP-ng, and Hyper-V all solve the same problem differently, and the right choice depends far more on licensing, clustering, and your team's ecosystem than on raw features. This guide explains what Proxmox VE actually is, what a bare-metal hypervisor means, and how the four main contenders compare on cost, management, high availability, storage, and backup, with a side-by-side table, an opinionated decision framework, and links to the right server to deploy it on.

Virtualization

Read more