This episode discusses Rocky Linux 10 and its development direction: main features based on RHEL 10, the lifecycle model and minor release schedule, migration from Rocky 9, and the cloud-native roadmap with image mode and ecosystem integration.

In the previous episode 20, you mastered containers with Podman, Buildah, and Skopeo. Now we look ahead: where Rocky Linux stands today, where it's going, and how you plan for long-term use. This episode covers Rocky Linux 10, its lifecycle model, and the ecosystem roadmap.
Understanding lifecycle isn't just theoretical knowledge. It drives practical decisions: when to upgrade, how long a version is safe to use, and when to start planning a migration. A good sysadmin always knows which phase their system is in.
Rocky Linux 10.0 was released in June 2025, based on RHEL 10. The latest minor release, 10.2, arrived in May 2026. Some key changes:
cat /etc/rocky-releasednf5 --version
uname -r
cat /etc/os-releaseThese three commands are the standard identity check: the release version, the dnf5 version, and the kernel version — a combination that proves the system is running on the Rocky 10 track.
It's important to understand that Rocky 10 doesn't erase previous versions:
curl -s https://rockylinux.org/10/releases | grep -o '10\.[0-9]' | sort -ucurl -s https://endoflife.date/rockylinuxThe EOL schedule is a reference you should check periodically — it determines when a system must be migrated.
Rocky Linux follows the RHEL lifecycle: every major release is supported for 10 years in total, split into two phases:
dnf5 check-updateMinor releases arrive roughly every 6 months. For Rocky 10, the current rhythm looks like this:
| Release | Estimated Time |
|---|---|
| 10.0 | June 2025 |
| 10.1 | Around November 2025 |
| 10.2 | May 2026 (current release) |
| 10.3 | Around November 2026 |
Each minor release carries security updates and device updates merged from RHEL. Systems that follow the latest minor release are always on the fully supported track.
Info
A practical view of the Rocky lifecycle: major versions last up to 10 years, minor releases move every ~6 months, and ELS extends the transition window for organizations that need it. Know your system's phase before planning a major upgrade.
A major version migration is a serious operation. The key preparations: a full backup (remember LVM snapshots from episode 8), a record of installed packages, and confirmation that applications are compatible with the new version.
Rocky provides an in-place migration path through the system-upgrade plugin:
dnf5 install dnf5-plugin-migratednf5 remove epel-releasednf5 system-upgrade --releasever=10 downloaddnf5 system-upgrade rebootThis sequence downloads all packages for Rocky 10, then reboots straight into the upgrade process. Important note: once the system is on Rocky 10, reinstall EPEL for the new version — the same pattern you learned in episode 5.
If an in-place migration feels too risky, there's always an alternative: a fresh install on a VM or bare metal (episode 3), then move the workload over. Many organizations choose this route for critical servers — a clean install is easier to debug than a complicated major upgrade.
Rocky Linux 9.x isn't disappearing — it enters the maintenance phase. Those of you still on Rocky 9 continue to receive security fixes and critical bug fixes until the end of its support period. Migrating to 10 isn't a sudden obligation, but a planned decision.
Rocky Linux's development direction is increasingly clear: cloud-native. The focus areas:
skopeo inspect docker://quay.io/rockylinux/rockylinux:10With this direction, the skills you gathered in episodes 18 and 20 — image mode, bootc, Podman — aren't just course material; they're skills aligned with the platform's future.
In this episode 21, you understood Rocky Linux's current position: the main features of Rocky 10 based on RHEL 10, the 10-year lifecycle model with minor releases around every 6 months and optional ELS, the Rocky 9 to 10 migration path with dnf5 system-upgrade, and the cloud-native roadmap focused on cloud images, image mode, and ecosystem integration.
Key takeaways:
dnf5 system-upgrade; a fresh install remains a safe alternative path.In the next episode 22, the final episode of this series, we will discuss ecosystem, alternatives, and final reflection — comparing Rocky Linux with AlmaLinux, Oracle Linux, CentOS Stream, and RHEL, when to choose which, a recap of all 22 episodes, and a production readiness checklist. See you in the closing chapter!