π ~1 min read
Table of contents
Symptom & Impact
Rootless Podman containers fail to start, affecting developer and CI workloads.
Environment & Reproduction
Common on hosts with missing user namespace mappings or disabled lingering.
podman run --rm alpine echo ok
Root Cause Analysis
Insufficient user cgroup delegation or missing subuid/subgid ranges blocks rootless runtime.
Quick Triage
Inspect user namespace mappings and podman info diagnostics.
podman info
grep '^$USER:' /etc/subuid /etc/subgid
loginctl show-user $USER
Step-by-Step Diagnosis
Validate cgroup version, user session manager, and rootless storage paths.
stat -fc %T /sys/fs/cgroup
systemctl --user status
podman system info

Solution – Primary Fix
Configure subuid/subgid ranges, enable lingering, and restart user services.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
echo '$USER:100000:65536' | sudo tee -a /etc/subuid /etc/subgid >/dev/null
sudo loginctl enable-linger $USER
systemctl --user daemon-reexec
podman run --rm alpine echo ok

Solution – Alternative Approaches
Use rootful Podman only for constrained emergency operations.
sudo podman run --rm alpine echo ok
Verification & Acceptance Criteria
Rootless containers launch and cgroup errors no longer appear.
podman run --rm alpine id
journalctl --user -n 60 --no-pager
Rollback Plan
Remove unintended mapping lines and disable lingering if policy requires.
sudo sed -i '/^$USER:100000:65536$/d' /etc/subuid /etc/subgid
sudo loginctl disable-linger $USER
Prevention & Hardening
Provision user namespace mappings during account bootstrap for container users.
Related Errors & Cross-Refs
Often related to fuse-overlayfs incompatibility and XDG runtime path issues.
Related tutorial: View the step-by-step tutorial for Ubuntu 26.04 LTS.
View all Ubuntu 26.04 LTS tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Podman rootless setup and Ubuntu cgroup v2 guidance.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.