2026-05-24 23:21:02 +02:00
# Flashing the Clawdie Operator USB
Published Clawdie operator USB artifacts are compressed:
```text
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
clawdie-quindecim-0.11.0.img.xz
2026-05-24 23:21:02 +02:00
```
Default policy:
```text
2026-06-14 12:04:56 +02:00
Downloaded .img.xz -> stream xz directly into dd
2026-05-24 23:21:02 +02:00
Build-local .img -> plain dd is OK
Always write to the whole USB disk, never to a partition
```
The compressed streaming path avoids storing both the 6+ GB compressed image and
the much larger 28 GB raw image.
---
## Safety Checklist
Before writing:
1. Verify the checksum.
2. Identify the USB disk carefully.
3. Unmount any mounted partitions from that USB stick.
4. Write to the whole disk device:
- Linux: `/dev/sdX` , `/dev/nvmeXnY` , etc.
- FreeBSD: `/dev/daX` , etc.
5. Do **not** write to a partition such as `/dev/sdX1` , `/dev/da0p1` , or `/dev/da0s1` .
A wrong device name can destroy the host OS or another data disk.
---
2026-06-14 12:04:56 +02:00
## Linux: Flash a Downloaded `.img.xz`
2026-05-24 23:21:02 +02:00
Find the USB disk:
```sh
lsblk -o NAME,SIZE,MODEL,TRAN,MOUNTPOINTS
```
Download with resume and retries:
```sh
curl -fL --continue-at - --retry 5 --retry-delay 5 --progress-bar -O \
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
https://osa.smilepowered.org/downloads/iso/clawdie-quindecim-0.11.0.img.xz
2026-05-24 23:21:02 +02:00
curl -fL --retry 5 --retry-delay 5 -O \
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
https://osa.smilepowered.org/downloads/iso/clawdie-quindecim-0.11.0.img.xz.sha256
2026-05-24 23:21:02 +02:00
```
Verify the downloaded artifact:
```sh
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
sha256sum -c clawdie-quindecim-0.11.0.img.xz.sha256
2026-05-24 23:21:02 +02:00
```
Unmount mounted USB partitions if needed:
```sh
sudo umount /dev/sdX* 2>/dev/null
```
2026-06-14 12:04:56 +02:00
Flash by streaming xz into `dd` :
2026-05-24 23:21:02 +02:00
```sh
set -o pipefail 2>/dev/null || true
2026-06-22 20:24:25 +02:00
xz -dc clawdie-quindecim-0.11.0.img.xz | dd of=/dev/sdX bs=4M status=progress conv=fsync & & sync
2026-05-24 23:21:02 +02:00
sync
```
Replace `/dev/sdX` with the actual whole USB disk.
---
2026-06-14 12:04:56 +02:00
## FreeBSD: Flash a Downloaded `.img.xz`
2026-05-24 23:21:02 +02:00
Find the USB disk:
```sh
camcontrol devlist
gpart show
```
Download with resume and retries:
```sh
curl -fL --continue-at - --retry 5 --retry-delay 5 --progress-bar -O \
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
https://osa.smilepowered.org/downloads/iso/clawdie-quindecim-0.11.0.img.xz
2026-05-24 23:21:02 +02:00
curl -fL --retry 5 --retry-delay 5 -O \
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
https://osa.smilepowered.org/downloads/iso/clawdie-quindecim-0.11.0.img.xz.sha256
2026-05-24 23:21:02 +02:00
```
Verify the downloaded artifact:
```sh
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
HASH=$(awk '{print $1}' clawdie-quindecim-0.11.0.img.xz.sha256)
sha256 -c "$HASH" clawdie-quindecim-0.11.0.img.xz
2026-05-24 23:21:02 +02:00
```
If `sha256sum` is installed, this GNU-style form is also OK:
```sh
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
sha256sum -c clawdie-quindecim-0.11.0.img.xz.sha256
2026-05-24 23:21:02 +02:00
```
Unmount mounted USB partitions if needed:
```sh
sudo umount /dev/daXs* 2>/dev/null
```
2026-06-14 12:04:56 +02:00
Flash by streaming xz into `dd` :
2026-05-24 23:21:02 +02:00
```sh
2026-06-22 20:24:25 +02:00
xz -dc clawdie-quindecim-0.11.0.img.xz | dd of=/dev/daX bs=1M status=progress conv=fsync & & sync
2026-05-24 23:21:02 +02:00
sync
```
Replace `/dev/daX` with the actual whole USB disk.
---
2026-06-14 12:04:56 +02:00
## Windows: Flash with Rufus or balenaEtcher
No decompression step needed — both tools read `.img.xz` directly.
1. Download both files (same folder):
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
- `clawdie-quindecim-0.11.0.img.xz`
- `clawdie-quindecim-0.11.0.img.xz.sha256`
2026-06-14 12:04:56 +02:00
2. (Recommended) verify the checksum in PowerShell:
```powershell
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
(Get-FileHash .\clawdie-quindecim-0.11.0.img.xz -Algorithm SHA256).Hash.ToLower()
2026-06-14 12:04:56 +02:00
# compare against the value in the .sha256 file
```
3. **Rufus:** open Rufus → **SELECT** the `.img.xz` → choose the USB drive under "Device" → **START** . Rufus decompresses and writes in one step. (Use "DD Image" mode if prompted.)
**balenaEtcher:** Flash from file → pick the `.img.xz` → Select target → Flash.
4. Write to the **whole USB device** , not a partition. This erases the drive.
> If your flasher is old and rejects `.xz`, extract first with 7-Zip (≥21.07) to
> get the raw `.img`, then flash that.
---
2026-05-24 23:21:02 +02:00
## If You Already Have an Uncompressed `.img`
For a local build artifact that already exists as a raw image:
### Linux
```sh
2026-06-22 20:24:25 +02:00
dd if=clawdie-quindecim-0.11.0.img of=/dev/sdX bs=4M status=progress conv=fsync & & sync
2026-05-24 23:21:02 +02:00
sync
```
### FreeBSD
```sh
2026-06-22 20:24:25 +02:00
dd if=clawdie-quindecim-0.11.0.img of=/dev/daX bs=1M status=progress conv=fsync & & sync
2026-05-24 23:21:02 +02:00
sync
```
2026-06-14 12:04:56 +02:00
Only unxz first if you specifically need the raw file for inspection or reuse:
2026-05-24 23:21:02 +02:00
```sh
docs: prep 0.11.0 publish — artifact names, download URLs, CHANGELOG
Stages the publish-time doc bump from 0.10.0 to 0.11.0: artifact filenames and
osa download/verify URLs (FLASHING, README, TESTING, BUILD, iso-publish skill),
the ISO product-version claims (README, BUILD), and enriches the existing
CHANGELOG [0.11.0] entry with this cycle's operator-facing ISO merges
(Join Hive vault provisioning, Tailscale auto-join, Mother MCP link, jq).
Left untouched: --clawdie-version examples (clawdie-ai namespace) and the
[0.10.0] CHANGELOG history. HOLD until the 0.11.0 image is built + hosted —
the download URLs 404 until then.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 06:33:25 +02:00
unxz -k clawdie-quindecim-0.11.0.img.xz
2026-05-24 23:21:02 +02:00
```
---
## Optional: Wipe Old Labels Before Reflashing
Old images can leave stale metadata near the end of the USB stick. If the live
USB later reports unexpected labels, wipe the whole stick before reflashing.
### Linux
Inspect first:
```sh
sudo wipefs -n /dev/sdX
sudo fdisk -l /dev/sdX
```
Then wipe only after confirming `/dev/sdX` is the USB stick:
```sh
sudo sgdisk --zap-all /dev/sdX
2026-06-22 20:24:25 +02:00
dd if=/dev/zero of=/dev/sdX bs=16M status=progress conv=fsync
2026-05-24 23:21:02 +02:00
sync
```
### FreeBSD
Inspect first:
```sh
gpart show /dev/daX
```
Then wipe only after confirming `/dev/daX` is the USB stick:
```sh
sudo gpart destroy -F /dev/daX
2026-06-22 20:24:25 +02:00
dd if=/dev/zero of=/dev/daX bs=16M status=progress conv=fsync
2026-05-24 23:21:02 +02:00
sync
```
Some sticks may not have a partition table at inspection time; that is fine.
The important rule is to confirm the target disk before destructive commands.