Debian 13 on a ZWO ASIAIR Pro
Flash the ZWO ASIAIR Pro (a Raspberry Pi inside) with Debian 13 (Trixie) and install AlpacaBridge.

Flashing the SD Card
Download the Raspberry Pi Imager for your OS from the official site (available for Windows, macOS, and Linux).
Flash a new SD card and keep the original ZWO card in a drawer. Want the stock ASIAIR back? Swap the original card in and you're done.
Steps
- Insert the USB cable from the ASIAIR
- Open Raspberry Pi Imager
- Click Choose Device and select your Raspberry Pi model
- Click Choose OS and select Raspberry Pi OS (64-bit). Choose either the Desktop or Lite (headless) version
- Click Choose Storage and select your SD card
- Click Next. You will be prompted to apply OS customisation settings
- It is recommended to configure the following before flashing:
- Hostname
- Username and password
- Wi-Fi credentials (if not using Ethernet)
- Enable SSH under the Services tab for remote access
- Click Save, then Yes to apply settings
- Click Write and wait for the process to complete
- Once verified, remove the SD card and insert it into your Raspberry Pi
Remote Access
Two remote access options are available:
- SSH: Enabled during the flashing process via the Imager settings. Recommended for headless setups; works on a local network without internet access. Connect using an SSH client such as Terminal (macOS/Linux) or PuTTY (Windows).
- Raspberry Pi Connect: Allows remote access via a browser without needing to be on the same local network. Requires an active internet connection on both devices. See connect.raspberrypi.com for setup instructions.
Keep the System Up to Date
Note 1: If you are using RPi Connect, it may disconnect during the update. Simply reconnect when it completes.
Note 2: If prompted about master references, choose Y.
sudo apt update && sudo apt full-upgrade -y && sudo reboot
Boot Config Update
We need to add a few lines to /boot/firmware/config.txt to enable the 12V GPIO output for the ASIAIR's power pins.
sudo grep -q '^gpio=12,13,26,18=op,dh,pu' /boot/firmware/config.txt \
|| echo 'gpio=12,13,26,18=op,dh,pu' | sudo tee -a /boot/firmware/config.txt
sudo reboot now
Install AlpacaBridge
Your board is ready. Continue to Install & Configure AlpacaBridge to add the OpenAstro APT repository, install the service, and set up your devices.