Exaviz Software

OS images, drivers, and software for Exaviz products

Exaviz provides custom operating system images with pre-installed drivers for all supported compute modules. These images are based on Debian/Raspberry Pi OS and include everything needed to use your Interceptor hardware.

Available OS Images

ImageCompute ModuleDescription
Desktop (RPi CM4/CM5)Raspberry Pi CM4, CM5Full desktop environment
Server (RPi CM4/CM5)Raspberry Pi CM4, CM5Headless server
Desktop (BPi CM4)Banana Pi CM4Full desktop environment
Server (BPi CM4)Banana Pi CM4Headless server

Included Drivers

All Exaviz OS images include:

  • RTL8367RB - 4-port Gigabit Ethernet switch driver
  • JMB585 - 5-port SATA controller driver
  • IP808AR - PoE controller driver (for PoE boards)

Version Requirements

Package Repository

For users running standard Raspberry Pi OS or Ubuntu, Exaviz provides a Debian package repository with the exaviz-dkms package for hardware support.

Add the repository:

# Download and add the GPG key
curl -fsSL https://exa-debian.nyc3.digitaloceanspaces.com/exaviz-repo-key.asc | sudo gpg --dearmor -o /etc/apt/keyrings/exaviz.gpg

# Detect distribution and add the repository
DISTRO=$(lsb_release -cs 2>/dev/null || (grep VERSION_CODENAME /etc/os-release 2>/dev/null | cut -d= -f2) || echo "bookworm")
echo "deb [arch=arm64 signed-by=/etc/apt/keyrings/exaviz.gpg] https://exa-debian.nyc3.digitaloceanspaces.com ${DISTRO} main" | sudo tee /etc/apt/sources.list.d/exaviz.list

# Update package lists
sudo apt update

# Install the package
sudo apt install exaviz-dkms

The script automatically detects your distribution (Debian Bookworm/Trixie, Ubuntu Noble, or Raspberry Pi OS) and uses the correct repository codename.


Downloads

Download OS images for Exaviz products

Installation

How to flash Exaviz OS images to your compute module

Last modified January 11, 2026