Skip to content

Releases: IntersectMBO/cardano-airgap

v2026-01-22

22 Jan 22:02
2faf7a1

Choose a tag to compare

ISO component versioning for this cardano-airgap release is:

Component Version
NixOS 25.11.20260103.30a3c51
Linux 6.12.63
Gnome 49.2
Nouveau 25.2.6
Nvidia 580.119.02
adawallet 1.0.0
cardano-address 4.0.0
cardano-cli 10.11.0.0
cardano-hw-cli 1.18.2
cardano-signer 1.29.0
cc-sign 0.1.5.0
orchestrator-cli 0.1.5.0
disko 1.13.0
tx-bundle 0.1.0.0

The ISO may be downloaded directly from the hydra build server:
https://ci.iog.io/build/10718693/download/1/airgap-boot-2faf7a1-nixos-gnome-25.11.20260103.30a3c51-x86_64-linux.iso

The sha256 hash for the ISO is provided in the sha256sums.txt asset file.

The ISO may also be assembled in an empty directory from the downloaded ISO split files and sha256sums.txt file, for example on Linux with bash:

# Download the *.iso-? and sha256sums.txt asset files to an empty directory

# Verify the split files have the expected hashes
sha256sum --ignore-missing -c sha256sums.txt

# Assemble the full ISO
for f in *.iso-?; 
  do cat "$f" >> "${f%-?}"
done

# Verify all files have the expected hashes
sha256sum -c sha256sums.txt

# Remove the split files
rm *.iso-?