Download QuantaBox
QuantaBox runs on Windows 10/11, modern Linux distributions, and macOS 13+ (Intel and Apple Silicon). Choose the package for your platform below.
Dual-licensed under Apache 2.0 / GPL-2.0. Copyright 2024-2026 Dyber, Inc.
Platform Packages #
Windows (x64)
| Package | Description | Recommended for |
|---|---|---|
QuantaBox-1.0.0-Setup-x64.exe | Full installer (wizard, Start Menu entries, file associations, optional bundled QEMU) | Most users |
QuantaBox-1.0.0-x64-portable.zip | Portable build, no installer | USB 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.
Linux (x86_64)
| Package | Description | For |
|---|---|---|
quantabox_1.0.0_amd64.deb | Debian/Ubuntu package | Debian, Ubuntu, Mint, Pop!_OS |
quantabox-1.0.0-1.x86_64.rpm | RPM package | Fedora, RHEL, Rocky, AlmaLinux, openSUSE |
QuantaBox-1.0.0-x86_64.AppImage | Portable AppImage | Any modern distro |
quantabox-1.0.0-linux-x64.tar.gz | Tarball (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)
| Package | Description | For |
|---|---|---|
QuantaBox-1.0.0-universal.dmg | Disk 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 #
| Minimum | Recommended | |
|---|---|---|
| CPU | 64-bit x86 with virtualization (Intel VT-x / AMD-V) | 4+ cores with VT-x/AMD-V or Apple Silicon |
| RAM | 4 GB | 16 GB+ (host + guests) |
| Disk | 10 GB free (app + one small VM) | SSD with room for your VM disks |
| OS | Windows 10, a current Linux, or macOS 13 | Windows 11, current Linux, macOS 14+ |
| Acceleration | Optional (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/kvmexists and your user can access it (thekvmgroup). - 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.