Skip to main content

❓ Frequently Asked Questions

General​

What is TunaOS?

TunaOS is a collection of bootc-based, immutable desktop operating system images built on Enterprise Linux (AlmaLinux, CentOS Stream, Fedora). It brings modern desktops (GNOME, KDE, COSMIC, XFCE, Niri) to a stable, enterprise-grade foundation.

Is TunaOS a Linux distribution?

Yes β€” but not in the traditional sense. TunaOS images are bootable OCI containers, not traditional packages. You pull and switch images like containers, while getting a full desktop experience.

Is TunaOS free?

Yes. TunaOS is open source under the Apache 2.0 license.

Installation​

How do I install TunaOS?

Two ways:

  1. Fresh install β€” Download an ISO from tunaos.org/download and write it to USB
  2. Switch from an existing bootc system β€” sudo bootc switch ghcr.io/tuna-os/yellowfin:gnome && sudo reboot

Can I dual-boot TunaOS?

TunaOS uses bootc which manages the bootloader. Dual-boot is possible but not the primary use case. For multi-OS on one machine, use Tacklebox to create a multi-boot USB.

Which variant should I choose?

NeedVariantBase
Latest ELYellowfinAlmaLinux Kitten 10
Stable ELAlbacoreAlmaLinux 10
Upstream ELSkipjackCentOS Stream 10
FedoraBonitoFedora 44
GNOMEAny :gnome tagβ€”
KDE PlasmaAny :kde or TromsΓΈβ€”
COSMICAny :cosmic tagβ€”
LightweightXFCE Linuxfreedesktop-sdk
Tiling WMAny :niri tagβ€”

Variants​

What's the difference between Yellowfin, Albacore, Skipjack, and Bonito?

They differ by base OS:

  • Yellowfin β€” AlmaLinux Kitten 10 (closest to upstream CentOS Stream)
  • Albacore β€” AlmaLinux 10 (stable Enterprise Linux)
  • Skipjack β€” CentOS Stream 10 (RHEL upstream)
  • Bonito β€” Fedora 44 (latest packages, ARM64 support)

All four support the same desktop environments and hardware variants.

What does -hwe, -gdx, and -gdx-hwe mean?

SuffixMeaning
-hweHardware Enablement β€” newer kernel for newer hardware
-gdxNVIDIA drivers + CUDA for GPU/AI workloads
-gdx-hweNVIDIA/CUDA on the HWE kernel

Example: ghcr.io/tuna-os/yellowfin:gnome-gdx-hwe

Desktop Environments​

Which desktop environment is best for my hardware?

HardwareRecommendedRAM usage
Modern (16GB+)GNOME or KDE~1-1.2 GB
Mid-range (8GB)COSMIC or KDE~0.8-1 GB
Older/light (4GB)XFCE~600 MB
Minimal/VMXFCE or Niri~400-600 MB

Can I switch desktop environments without reinstalling?

Yes! Use bootc switch:

# From GNOME to COSMIC
sudo bootc switch ghcr.io/tuna-os/yellowfin:cosmic
sudo systemctl reboot

Package Management​

Can I use apt/dnf on TunaOS?

TunaOS images are immutable β€” /usr is read-only at runtime. However:

  • Homebrew is pre-installed for user-space tools
  • Flatpak is pre-enabled for GUI apps
  • Toolbox/Distrobox provides a mutable container for dnf/apt
# Use Toolbox for traditional package management
toolbox enter
sudo dnf install htop

How do I update TunaOS?

sudo bootc upgrade && sudo systemctl reboot

This pulls the latest image and reboots into it. Rollback is one command: sudo bootc rollback.

Community​

How can I contribute?

See CONTRIBUTING.md. Good first steps:

  • Try a TunaOS variant and report issues
  • Improve documentation
  • Look for good-first-issue labels in TunaOS repos
  • Join the Matrix chat

Where do I report bugs?

Open an issue on the relevant GitHub repository. For general issues, use tuna-os/tunaOS.

Technical​

What is bootc?

bootc is a CNCF Sandbox project for bootable container images. Instead of traditional package-based OS updates, the entire OS is a container image that you pull, switch to, and reboot. Learn more in the Bootc Guide.

How are images built?

TunaOS images are built in GitHub Actions using Containerfiles. See Building TunaOS and CI/CD.

Does TunaOS support Secure Boot?

Yes. TunaOS images support UEFI Secure Boot through the standard shim mechanism provided by the base OS.