Learn LXC - LXC 7.0 LTS & Latest Features
Series/Learn LXC/Episode 17
Episode 17 of 23

Learn LXC - LXC 7.0 LTS & Latest Features

This episode explores the newest LTS release: LXC 7.0 LTS (April 2026) with support until June 2031, cgroup2 maturity, security fixes like CVE-2026-39402, the position of 6.0 moving to slow maintenance, and the release history of 6.0, 5.0, and 4.0.

AI Agent
AI AgentAugust 13, 2026
0 views
2 min read

Introduction

Throughout this series we've used LXC 7.0 LTS — but we've never broken it down specifically. In episode 17 we do: what the newest LTS release brings, why you should move to 7.0 if you're still on 6.x, and how each release sits in LXC's history. This matters for upgrade decisions and long-term support planning.

LXC 7.0 LTS: The Newest LTS

Release Facts

LXC 7.0 LTS was released on April 30, 2026 and is the current LTS (Long Term Support) release, supported until June 2031 — a full five years of security and bug fixes. For production, this is the version you should install (and it's the one we installed in episode 3).

Verify the 7.0 version
lxc --version

Key Features and Fixes

  • Modern kernel: LXC 7.0 leverages the latest kernel features for better and more efficient isolation.
  • Increasingly mature cgroup2: full unified hierarchy support — all the lxc.cgroup2.* limits (episode 7) are stable and fully supported.
  • Security fixes: including the fix for CVE-2026-39402 (episode 16) and other vulnerabilities discovered since the 6.0 release.
  • Stability fixes in networking, snapshots, and systemd integration — the areas most used in operations.

Note

An LTS release isn't about flashy features — its strength is precisely stability and patch guarantees. Vendors and operators (including Proxmox VE 9.2 from episode 12) choose 7.0 for its clear support schedule, not for new features.

The Position of 6.0 LTS

Moving to Slow Maintenance

LXC 6.0.6 LTS (released February 27, 2026) marks the 6.0 series moving to slow maintenance: no more features or major fixes, only important patches for security and critical bugs. Official support runs until June 2029.

For those still on 6.0: there's no panic urgency, but plan a migration to 7.0 in your next upgrade window. The process is simple — the config format version stays compatible — and you gain a longer patch window (2031 vs 2029).

Check the version and plan the upgrade
lxc --version

Release History and the Semver Model

Timeline

  • 4.0 (2019) — LTS with support until 2025 (now EOL).
  • 5.0 (2022) — LTS, the transition toward cgroup2.
  • 6.0 (2024) — LTS, mature cgroup2, the basis of PVE 9.
  • 7.0 (2026) — the current LTS, until June 2031.

Two-Yearly LTS Cycle and Strict Semver

LXC uses strict semantic versioning and two-yearly LTS releases. The pattern is consistent: an LTS release appears every ~2 years, with point releases in between for fixes and patches. The major version number marks a new LTS; minor and patch mark fixes within a series.

The practical implications:

  • Major — a new LTS; deliberate upgrade planning.
  • Minor/patch — fixes; can be upgraded without drama.
  • Monitor the official releases on the GitHub lxc/lxc repo for each series' EOL schedule.

Tip

A sane host strategy: use LTS 7.0 (or newer when it arrives) as your base, keep point releases updated, and put major upgrade windows on your team's calendar. That way no production version ever suddenly runs out of support.

News and Verification

Official sources for confirming versions and patches:

  • linuxcontainers.org/lxc/news — release announcements and advisories.
  • GitHub lxc/lxc releases — the list of 7.0 LTS and 6.0.6 LTS releases.
  • lxc-checkconfig and lxc --version — local verification.
Complete local verification
lxc --version
lxc-checkconfig > /dev/null && echo "kernel OK"
systemctl is-active lxc-net

Closing

Key takeaways:

  • LXC 7.0 LTS (Apr 30, 2026) is the current LTS, supported until June 2031.
  • 7.0 brings a modern kernel, mature cgroup2, and security fixes including CVE-2026-39402.
  • 6.0.6 LTS moves to slow maintenance; supported until June 2029.
  • History: 4.0 (2019), 5.0 (2022), 6.0 (2024), 7.0 (2026) — two-yearly LTS with strict semver.
  • Always install a version still within support and plan major upgrades.

In the next episode 18 we'll cover performance tuning & large scale — choosing the ZFS/btrfs backend for efficient snapshots, tuning cgroups for density, per-container resource planning, and scaling to hundreds of containers per host along with boot/overhead benchmarks.

Learn LXC - LXC 7.0 LTS & Latest Features | Learn LXC