Driver Versions
This page tracks major driver versions across Bluefin releases to help users identify and switch to specific driver versions.
Overview
@ublue-os/bluefin and @ublue-os/bluefin-lts publish detailed changelogs with every release that include kernel versions, Mesa driver versions, and NVIDIA driver versions. This report consolidates that information for the most recent Stable and LTS releases to help users troubleshoot driver-specific issues or test specific configurations.
Bluefin
| Image Tag | Date | Kernel | Mesa | NVIDIA |
|---|---|---|---|---|
| stable-20260317 | Mar 17, 2026 | 6.18.10-200 | 25.3.6-1 | 595.45.04-4 |
| stable-20260312 | Mar 12, 2026 | 6.18.10-200 | 25.3.6-1 | 595.45.04-3 |
| stable-20260217 | Feb 17, 2026 | 6.17.12-300 | 25.3.4-1 | 590.48.01-3 |
| stable-20260212 | Feb 12, 2026 | 6.17.12-300 | 25.3.4-1 | 590.48.01-3 |
| stable-20260203 | Feb 3, 2026 | 6.17.12-300 | 25.3.4-1 | 590.48.01-3 |
| stable-20260127 | Jan 27, 2026 | 6.17.12-300 | 25.2.7-1 | 590.48.01-3 |
Bluefin LTS
| Image Tag | Date | Kernel | HWE Kernel | Mesa | NVIDIA |
|---|---|---|---|---|---|
| bluefin-lts LTS | Jan 20, 2026 | 6.12.0-172 | 6.17.8-200.fc42 | 25.2.5-3 | 590.44.01-1 |
| bluefin-lts LTS | Dec 16, 2025 | 6.12.0-170 | 6.17.7-200.fc42 | 25.2.5-3 | 590.44.01-1 |
| bluefin-lts LTS | Dec 9, 2025 | 6.12.0-164 | 6.17.7-200.fc42 | 25.2.5-3 | 590.44.01-1 |
| bluefin-lts LTS | Dec 2, 2025 | 6.12.0-164 | 6.17.7-200.fc42 | 25.2.5-3 | 580.105.08-1 |
| bluefin-lts LTS | Nov 25, 2025 | 6.12.0-161 | 6.17.1-300.fc42 | 25.2.5-2 | 580.105.08-1 |
| bluefin-lts LTS | Nov 21, 2025 | 6.12.0-157 | 6.17.1-300.fc42 | 25.0.7-5 | 580.105.08-1 |
| bluefin-lts LTS | Nov 19, 2025 | 6.12.0-157 | 6.16.10-200.fc42 | 25.0.7-5 | 580.105.08-1 |
| bluefin-lts LTS | Nov 18, 2025 | 6.12.0-153 | 6.16.10-200.fc42 | 25.0.7-5 | 580.105.08-1 |
| bluefin-lts LTS | Nov 17, 2025 | 6.12.0-153 | 6.16.10-200.fc42 | 25.0.7-5 | 580.105.08-1 |
| bluefin-lts LTS | Nov 14, 2025 | 6.12.0-153 | 6.16.10-200.fc42 | 25.0.7-5 | 580.105.08-1 |
NVIDIA driver versions are only listed in NVIDIA-specific image variants. Non-NVIDIA images do not include kmod-nvidia packages.
How to Switch to a Specific Version
To switch to any of these versions, use the bootc switch command with signature enforcement based on @bootc-dev/bootc:
Bluefin Stream
# Get your current image name
IMAGE_NAME=$(jq -r '."image-name"' < /usr/share/ublue-os/image-info.json)
# Switch to latest stable
sudo bootc switch --enforce-container-sigpolicy ghcr.io/ublue-os/$IMAGE_NAME:stable
# Switch to a specific stable version
sudo bootc switch --enforce-container-sigpolicy ghcr.io/ublue-os/$IMAGE_NAME:stable-20251012
# Switch to an older stable version (e.g., stable-20250928)
sudo bootc switch --enforce-container-sigpolicy ghcr.io/ublue-os/$IMAGE_NAME:stable-20250928
# Reboot to apply changes
sudo systemctl reboot
Bluefin LTS Stream
# Get your current image name
IMAGE_NAME=$(jq -r '."image-name"' < /usr/share/ublue-os/image-info.json)
# Switch to latest LTS
sudo bootc switch --enforce-container-sigpolicy ghcr.io/ublue-os/$IMAGE_NAME:lts
# Switch to a specific LTS version
sudo bootc switch --enforce-container-sigpolicy ghcr.io/ublue-os/$IMAGE_NAME:lts.20251006
# Reboot to apply changes
sudo systemctl reboot
Check your current Bluefin version with:
bootc status
The --enforce-container-sigpolicy flag ensures you're always running a signed image, maintaining security and integrity of your system.
Testing & Rollback Strategy
For Users Testing Driver Issues
- Identify the suspected problematic version from the table above
- Switch to the previous stable version using
bootc switch - Test your specific use case (desktop performance, hardware compatibility, etc.)
- Report findings in the @ublue-os/bluefin issue tracker with specific version numbers
References
- @ublue-os/bluefin - Stable releases
- @ublue-os/bluefin-lts - LTS releases
- Bluefin Releases - Stable releases
- Bluefin LTS Releases - LTS releases
- Bluefin Documentation - Official docs
- Bluefin LTS Documentation - LTS-specific docs
- @bootc-dev/bootc - Bootc reference