Pre-Built Images · flash and go
Write one to an SD card, boot your Raspberry Pi, and you're running — already pointed at hamclock.com. No command line, no building, nothing to configure but your call sign.
Pick your board
Each image is built for one Raspberry Pi model at 1600×960. Not sure which you have? It's printed on the board near the USB ports.
How to flash it
You need a microSD card (16 GB or larger) and a card reader. The easy way works the same on every operating system.
.img.xz directly.
.img.xz.Prefer the command line, or want to verify before you write? Pick your OS:
Windows has no built-in dd, so stick with Raspberry Pi Imager or balenaEtcher above — both take the .img.xz as-is. You do not need to extract it. (Windows 11 can extract .xz in Explorer, and 7-Zip handles it everywhere — but extracting just makes a bigger file and an extra step.)
Verify your download in PowerShell or Command Prompt:
certutil -hashfile hamclock-pi4-1600x960.img.xz SHA256Compare the result to the SHA-256 listed on the download above.
Easiest is Raspberry Pi Imager or Etcher. For the terminal, you may first need xz: brew install xz.
# find your card — note the diskN that appears when you insert it
diskutil list
# unmount it (replace N), then write straight from the .xz
diskutil unmountDisk /dev/diskN
xzcat hamclock-pi4-1600x960.img.xz | sudo dd of=/dev/rdiskN bs=4m
# verify the download first if you like:
shasum -a 256 hamclock-pi4-1600x960.img.xzThere is no undo with dd. Make sure diskN is the card and not your Mac's drive.
Imager and Etcher work on Linux too, but most people just pipe it to the card:
# 1. find your card (the ~16-32GB disk that appears when you insert it)
lsblk
# 2. write it — replace /dev/sdX with YOUR card (e.g. /dev/sdb, /dev/mmcblk0)
xzcat hamclock-pi4-1600x960.img.xz | sudo dd of=/dev/sdX bs=4M conv=fsync status=progress
# 3. flush before removing the card
syncThere is no undo with dd — verify the device with lsblk first. Writing to the wrong /dev/ overwrites that disk.
Check the download against its SHA-256:
sha256sum hamclock-pi4-1600x960.img.xzAfter it boots
Rather build it yourself, or running a different board? See Build Your Own. Got an Inovato Quadra? See Convert an Inovato.