Download QuantaBox

QB-DL-001 Rev 1.0 - June 2026

QuantaBox runs on Windows 10/11, modern Linux distributions, and macOS 13+ (Intel and Apple Silicon). Choose the package for your platform below.

Current release: QuantaBox 1.0.0
Dual-licensed under Apache 2.0 / GPL-2.0. Copyright 2024-2026 Dyber, Inc.

Platform Packages #

Windows (x64)

PackageDescriptionRecommended for
QuantaBox-1.0.0-Setup-x64.exeFull installer (wizard, Start Menu entries, file associations, optional bundled QEMU)Most users
QuantaBox-1.0.0-x64-portable.zipPortable build, no installerUSB sticks, locked-down machines

Install: Run the .exe, accept the license, choose a folder, and finish. QuantaBox installs to C:\Program Files\Dyber\QuantaBox by default. See Installation.

Hardware acceleration: QuantaBox uses a hardware-accelerated backend. On Windows it will use Hyper-V / WHPX when available, otherwise it falls back to software emulation. See System Requirements.

Linux (x86_64)

PackageDescriptionFor
quantabox_1.0.0_amd64.debDebian/Ubuntu packageDebian, Ubuntu, Mint, Pop!_OS
quantabox-1.0.0-1.x86_64.rpmRPM packageFedora, RHEL, Rocky, AlmaLinux, openSUSE
QuantaBox-1.0.0-x86_64.AppImagePortable AppImageAny modern distro
quantabox-1.0.0-linux-x64.tar.gzTarball (CLI + GUI binaries)Manual installs

Install (Debian/Ubuntu):

sudo apt install ./quantabox_1.0.0_amd64.deb

Install (Fedora/RHEL family):

sudo dnf install ./quantabox-1.0.0-1.x86_64.rpm

See Installation for full details.

macOS (Universal)

PackageDescriptionFor
QuantaBox-1.0.0-universal.dmgDisk image (Intel + Apple Silicon)macOS 13 Ventura and later

Install: Open the .dmg and drag QuantaBox to Applications. See Installation.

Prerequisite: QEMU Engine #

QuantaBox uses QEMU as its execution engine. The Windows installer can bundle a compatible QEMU build for you. On Linux and macOS, install QEMU from your package manager if it is not already present:

# Debian / Ubuntu
sudo apt install qemu-system-x86 qemu-utils

# Fedora / RHEL family
sudo dnf install qemu-kvm qemu-img

# macOS (Homebrew)
brew install qemu

QuantaBox automatically detects QEMU in standard locations. You can confirm detection at any time with:

quantabox status

See Installation for details on configuring the QEMU engine.

System Requirements #

MinimumRecommended
CPU64-bit x86 with virtualization (Intel VT-x / AMD-V)4+ cores with VT-x/AMD-V or Apple Silicon
RAM4 GB16 GB+ (host + guests)
Disk10 GB free (app + one small VM)SSD with room for your VM disks
OSWindows 10, a current Linux, or macOS 13Windows 11, current Linux, macOS 14+
AccelerationOptional (software fallback works)Hyper-V/WHPX, KVM, or Hypervisor.framework enabled

Enabling Acceleration

  • Windows - Enable the Windows Hypervisor Platform feature (and/or Hyper-V) and ensure virtualization is on in firmware/BIOS.
  • Linux - Ensure /dev/kvm exists and your user can access it (the kvm group).
  • macOS - Hypervisor.framework is built in; no action required.

See Troubleshooting for help if acceleration is not available.

Verifying Your Download #

Each release ships a SHA256SUMS file. Verify your download before installing:

# Linux / macOS
sha256sum -c SHA256SUMS

# Windows (PowerShell)
Get-FileHash .\QuantaBox-1.0.0-Setup-x64.exe -Algorithm SHA256

Compare the printed hash against the value in SHA256SUMS. For maximum assurance, verify the detached signature (SHA256SUMS.sig) against the Dyber release signing key published at dyber.org.

Source Code #

QuantaBox is open source. Build it yourself from the workspace:

git clone https://github.com/dyber-pqc/quantabox.git
cd quantabox
cargo build --workspace --release

Full instructions: Building from Source.

Release Notes #

1.0.0 - Initial public release

  • Multi-platform hypervisor backends: KVM (Linux), Hyper-V/WHPX (Windows), Hypervisor.framework (macOS), with TCG software fallback.
  • Post-quantum disk encryption: AES-256-GCM with ML-KEM-768 key wrapping (FIPS 203).
  • Built-in ISO library with 40+ curated operating systems and checksum verification.
  • Smart per-OS VM presets for CPU, memory, and disk.
  • Snapshots, encrypted export/import, and backups.
  • In-app noVNC console and one-click SSH connection files.
  • Shared folders (virtio-9p) and USB passthrough.
  • Full command-line interface with GUI parity.

See the project repository for the complete changelog.

Looking for older builds or nightly releases? Visit the releases page on the project repository.