A microVM hypervisor for cloud streaming — GPU included.
nesbox runs a Linux guest with a real GPU attached, built for cloud gaming: boot a VM, hand it a game, stream the result. Each VM boots to userspace in about a second and shares one bare-metal GPU with its neighbours.
nesbox is a VMM that puts a virtio-gpu device in every virtual machine. The GPU is not an optional add-on: it is always present, always connected, always ready.
The primary use case is cloud streaming: many lightweight VMs sharing one bare-metal GPU, each running a game or rendering workload, isolated from one another, started in the time it takes to launch a process.
nesbox boots an ELF vmlinux directly — no bootloader, no initrd. Point
kernel_image_path at a kernel you built and it is loaded straight into guest
memory, with the root filesystem coming from a virtio-blk device.
Building your own kernel is the point rather than a fallback: it is how you get a recent one, and how you keep the guest down to the handful of drivers a microVM actually needs.
Everything is virtio 1.0 over PCI — no virtio-mmio, and ECAM rather than legacy config access, so the guest sees a machine that looks like modern hardware.
| Device | Backed by |
|---|---|
| virtio-gpu | rutabaga_gfx, in-process |
| virtio-net | the host kernel, through vhost-net and a tap |
| virtio-vsock | the host kernel, through vhost-vsock |
| virtio-fs | virtiofsd, over vhost-user |
| virtio-blk | in-process, on a worker thread |
| virtio-console | in-process |
Where the kernel can do the work, it does: only the GPU has to live in the VMM process, because rutabaga does.
The virtio-gpu device is backed by rutabaga_gfx over the DRM native context path, which gives the guest close to direct access to the host GPU's render engine — no intermediate translation layer, no shader recompilation on the host side.
The guest needs no GPU driver of its own. It binds virtio-gpu, and Mesa inside
the guest talks the native-context protocol to the host's driver. On an Intel
Arc A310 host, vulkaninfo in the guest reports the card by name.
nesbox is not a container runtime. It is not a full virtual machine with a BIOS, ACPI tables for fifty devices, or a thirty-second boot. It is a microVM — a minimal, purpose-built virtual machine containing what a gaming workload needs and nothing it does not.
- Linux with KVM (
/dev/kvm) - An Intel or AMD GPU with a DRM render node (
/dev/dri/renderD128) libvirglrendererbuilt with the DRM native context for your GPUvirtiofsd, for shared directoriesCAP_NET_ADMINon the nesbox binary, for networking:sudo setcap cap_net_admin+ep /path/to/nesbox
Important
Nvidia GPUs are not currently supported.
We are developing virtio-nvgpu, a custom virtio driver for Nvidia hardware
here.
This work requires dedicated engineering time. If you would like to help fund
or contribute to it, please reach out.
- A kernel with
VIRTIO_PCI,PCI_MMCONFIG,DRM_VIRTIO_GPU,VIRTIO_FSandVSOCKETS - Mesa built with virtio native context support for your GPU vendor
- No proprietary guest drivers, and no host GPU driver in the guest at all
cargo build --release
sudo setcap cap_net_admin+ep ./target/release/nesbox
# once per host: IP forwarding and NAT so guests can reach the network.
# Explains each change and asks before making it.
sudo ./target/release/nesbox setup my-vm.json
./target/release/nesbox my-vm.jsonSee examples/vm.json for the configuration format.
nesbox is under active development and has not been deployed anywhere. What works today, verified by running it:
- Boot to Alpine userspace in about a second, with SMP
- A guest that renders on the host GPU through native context
- Networking out to the internet, shared directories, and a vsock control channel
- Clean shutdown, with exit codes distinguishing a guest that powered off from one that died
What is missing is as important:
- No seccomp filter and no jailer. The VMM runs with the privileges it was given. This matters if you are considering it for untrusted guests.
- No management API. Configuration is a JSON file and the process is the interface.
- No snapshots, no live migration, no CPU pinning.
- Performance is unmeasured. No benchmark has been run, so this README quotes no numbers.
Guests are isolated by KVM hardware virtualisation. That is the whole of it today — there is no seccomp sandbox around the VMM process and no jailer chroot.
Multiple nesbox VMs share the host GPU through its DRM render node, each with its own renderer context and fence timeline, isolated by the kernel's DRM scheduler.
Security note: a misbehaving guest that exploits a bug in the host GPU driver could affect other VMs sharing that GPU. This is inherent to GPU sharing and not unique to nesbox. For workloads needing stronger GPU isolation, a dedicated GPU per tenant (SR-IOV or MIG where available) is the right tool.
Roughly in priority order:
- Persisting host network setup without systemd —
nesbox setup --persistinstalls a systemd unit; hosts using OpenRC or runit are told what to arrange by hand instead. - Overlapping block I/O — requests are served off the vCPU thread but still one at a time; io_uring would let a deep queue run concurrently.
- Seccomp and a jailer — confine the VMM process itself.
- CPU pinning — pin vCPU threads to host cores to cut scheduler jitter in latency-sensitive rendering.
- A management API — expose lifecycle control, GPU health and VRAM usage over a socket.
- Shader cache mounting — a persistent host directory for virglrenderer, to avoid recompiling shaders every boot.
- Nvidia GPU support (
virtio-nvgpu) — active development; requires funding. Contributions and sponsorship welcome. - SR-IOV support — dedicated GPU instances per VM where full hardware isolation is required.
- Multi-GPU support — select a GPU per VM, or stripe across cards.
nesbox began as a fork of Firecracker and its virtio-gpu work drew on libkrun. Neither remains in the codebase — the VMM was rewritten from scratch on the rust-vmm crates — but both shaped it.