lxc/lxc

LXC - Linux Containers

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 9 minutes ago
Added to GitGenius on September 12th, 2026
Created on September 7th, 2012
Open Issues & Pull Requests: 148 (+0)
GitHub issues: Enabled
Number of forks: 1,180
Total Stargazers: 5,260 (+0)
Total Subscribers: 204 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 22.8 hours
Mean response time: 136.7 days
90th percentile: 539.6 days
Tracked items: 158

Most active contributors

Sign in to see contributor activity.

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 96% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "Feature" is answered fastest, typically in about 3 hours, while "Incomplete" waits about 3 weeks. Only 6% of issues opened in the past year have been closed. Three people close 85% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 45
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 839 days
Stale 30+ days: 43
Stale 90+ days: 41

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • Incomplete (19)
  • Feature (13)
  • Bug (11)
  • Easy (10)
  • External (7)
  • Maybe (7)
  • Documentation (5)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

LXC is a low-level Linux container runtime that provides system containers through kernel security features like namespaces, mandatory access control, and control groups.

LXC addresses the need for lightweight virtualization without the overhead of separate kernels and hardware simulation. It achieves this by leveraging kernel-level isolation mechanisms to create containers that behave like virtual machines but with significantly lower resource consumption. The runtime has been actively developed since 2008 and is used in production environments worldwide. A key distinguishing feature is its pioneering support for unprivileged containers, which run without elevated privileges by mapping host UIDs and GIDs to unprivileged ranges inside the container through kernel user namespaces. This security model minimizes the attack surface by requiring only three setuid helpers for full functionality while running everything else as the unprivileged user.

Developers should choose LXC if they need system containers that closely replicate VM-like environments while maintaining security through kernel isolation features. It suits projects requiring fine-grained control over container configuration, particularly those prioritizing security and the ability to run containers without root privileges. The tool is appropriate for teams with experience tuning container security settings, as LXC's configuration management allows experienced users to customize behavior to specific requirements. It is less suitable for applications requiring high-level orchestration or simplified container management abstractions.

The project maintains active continuous integration testing across Linux platforms with fuzzing coverage through both OSS-Fuzz and CIFuzz. The codebase undergoes security-focused development practices as evidenced by its participation in formal security assessment programs. Core contributors include individuals who helped implement containerization features in the Linux kernel itself, bringing deep expertise in the underlying technologies.