Downloads
These ISOs are experimental, please report issues if you want to help!
Here is a short runbook for the Bluefin installation process. Read the entirety of this documentation in order to ensure survival. (In case of a raptor attack).
Status
There are currently two sets of installation media. One using the Anaconda installer, and one using the Readymade installer. We are currently defaulting to Anaconda and are experimenting with moving to Readymade in the future. The website is the intended method for users to download Bluefin. The direct ISOs are linked below for convenience:
Anaconda Installer Downloads
Bluefin
The most current, based on the latest Fedora.
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin | AMD/Intel | 📥 bluefin-stable-x86_64.iso | 🔐 Verify |
Bluefin | Nvidia | 📥 bluefin-nvidia-open-stable-x86_64.iso | 🔐 Verify |
Bluefin GTS
The default experience for users, following the previous stable release of Fedora.
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin GTS | AMD/Intel | 📥 bluefin-gts-x86_64.iso | 🔐 Verify |
Bluefin GTS | Nvidia | 📥 bluefin-nvidia-open-gts-x86_64.iso | 🔐 Verify |
Bluefin LTS
The long term support experience.
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin LTS (Beta) | AMD/Intel | 📥 bluefin-lts-x86_64.iso | 🔐 Verify |
Bluefin LTS (Beta) | ARM (aarch64) | 📥 bluefin-lts-aarch64.iso | 🔐 Verify |
Bluefin GDX
The AI workstation with Nvidia and CUDA.
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin GDX (Beta) | Nvidia | 📥 bluefin-gdx-x86_64.iso | 🔐 Verify |
Bluefin GDX (Beta) | ARM (aarch64) | 📥 bluefin-gdx-lts-aarch64.iso | 🔐 Verify |
Readymade Live ISO Downloads
Due to the simplified nature of this installer, it's an excellent choice if you plan on using Bluefin inside virtual machines.
Bluefin
The most current, based on the latest Fedora.
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin | AMD/Intel | 📥 readymade-bluefin-stable-x86_64.iso | 🔐 Verify |
Bluefin | Nvidia | 📥 readymade-bluefin-nvidia-open-stable-x86_64.iso | 🔐 Verify |
Bluefin LTS
The long term support experience
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin LTS (Beta) | AMD/Intel | 📥 readymade-bluefin-lts-x86_64.iso | 🔐 Verify |
Bluefin LTS (Beta) | ARM (aarch64) | 📥 readymade-bluefin-live-aarch64.iso | 🔐 Verify |
Bluefin GDX
The AI workstation with Nvidia and CUDA.
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin GDX (Beta) | Nvidia | 📥 readymade-bluefin-gdx-x86_64.iso | 🔐 Verify |
Bluefin GDX (Beta) | ARM (aarch64) | 📥 readymade-bluefin-live-gdx-aarch64.iso | 🔐 Verify |
Bluefin GTS
The default experience for users, following the previous stable release of Fedora.
📖 Read the documentation to learn about features and differences.
Version | Architecture | Download | Checksum |
---|---|---|---|
Bluefin GTS | AMD/Intel | 📥 readymade-bluefin-gts-x86_64.iso | 🔐 Verify |
Bluefin GTS | Nvidia | 📥 readymade-bluefin-nvidia-open-gts-x86_64.iso | 🔐 Verify |
Older Backup ISOs
These are the older Anaconda-based installers with an older version of Bluefin, but don't worry it will autoupdate. Try this if nothing else works:
Bluefin (AMD/Intel)
📥 Download: bluefin-stable.iso
🔐 Verify: Checksum
Bluefin (for Nvidia)
📥 Download: bluefin-nvidia-stable.iso
🔐 Verify: Checksum
Verifying Downloads with Checksums
Checksums allow you to verify that your download completed successfully and wasn't corrupted or tampered with. After downloading an ISO, you can compare its checksum to the official checksum file to ensure integrity. While optional, verification is recommended for important installations.
How to verify checksums using sha256sum
-
Download both the ISO file and its corresponding CHECKSUM file
- For example:
bluefin-stable-x86_64.iso
andbluefin-stable-x86_64.iso-CHECKSUM
- For example:
-
Generate the checksum of your downloaded ISO:
sha256sum bluefin-stable-x86_64.iso
-
Compare with the official checksum file:
cat bluefin-stable-x86_64.iso-CHECKSUM
-
Verify they match: The output from step 2 should match the hash in the CHECKSUM file. If they match, your download is verified and safe to use.
Example:
# Generate checksum of downloaded file
$ sha256sum bluefin-stable-x86_64.iso
a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456 bluefin-stable-x86_64.iso
# Check official checksum
$ cat bluefin-stable-x86_64.iso-CHECKSUM
a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456 bluefin-stable-x86_64.iso
# ✅ Match! Your download is verified