Struggling with Container lab 3.2 lxc
I can not seem to get the container to run. The information for this Containers Course seems to rely on outdated versions of Ubuntu and I do not know what to do.
When creating the unprivileged container and specifying Ubuntu Xenial: "ERROR: could not find."
Okay so try installing Ubuntu Noble instead now I get:
$lxc-start -n unpriv-xipe-user -d
lxc-start: unpriv-xipe-user: ../src/lxc/lxccontainer.c: wait_on_daemonized_start: 829 No such file or directory - Failed to receive the container state
lxc-start: unpriv-xipe-user: ../src/lxc/tools/lxc_start.c: lxc_start_main: 307 The container failed to start
lxc-start: unpriv-xipe-user: ../src/lxc/tools/lxc_start.c: lxc_start_main: 310 To get more details, run the container in foreground mode
lxc-start: unpriv-xipe-user: ../src/lxc/tools/lxc_start.c: lxc_start_main: 312 Additional information can be obtained by setting the --logfile and --logpriority options
Try sudo! Yet I get:
$sudo lxc-start -n unpriv-xipe-user -d
lxc-start: unpriv-xipe-user: ../src/lxc/tools/lxc_start.c: lxc_start_main: 267 No container config >>specified
I've looked online and am wondering where the path for lxc container configs are and whether I need to write them or if this is some other error either on my part or from the difference between versions..
I also tried prsalinux's post about editing grub .config when he had a similar problem but to no avail. ![]()
Comments
-
Hi @smithy7,
[EDIT]
Due to LXC's reliance on cgroup1, the official LXC documentation still recommends the installation of LXC on earlier releases of the Ubuntu OS - Bionic, predating the adoption of cgroup2. Its operation on more recent Ubuntu releases is obstructed by the presence of cgroup2 that is not supported by LXC.
[/EDIT]In light of these limitations, the sensible recommendation is to attempt the LXC exercises on a Virtual Machine operated by an earlier guest Ubuntu OS release. I do not recommend natively operating earlier Ubuntu OS releases that no longer receive security updates.
Also, booting a more recent cgroup2 enabled Ubuntu OS release and switching to cgroup1 (even if temporarily) only for the purpose of these exercises is not recommended. The suggested workaround referenced above, while successful for LXC operations, could have adverse effects on the other containerization tools.
Once LXC runs on a supported OS release, there is the issue of running containers from images available through the LXC image registry. The
downloadtemplate retrieves the list of available images. Over time, this list is updated with new images while older ones are removed once out of support. Make sure you analyze the output list for the most up to date images available, then select an image distribution, release and architecture to create the container. You can also browse through the image registry at https://images.linuxcontainers.org/ for the most up o date images available to download.While course updates are in progress, please follow these instructions to get started with LXC.
Regards,
-Chris1 -
Hello,
I'm getting a similar error. I tried this with Ubuntu 20.04. lxc-start doesn't report an error, but the state of the container remains as STOPPED.
--
zak@ubuntu20:~$ lxc-create --template download --name unpriv-cont-user -- --dist ubuntu --release questing --arch amd64
Using image from local cache
Unpacking the rootfsYou just created an Ubuntu questing amd64 (20251107_07:42) container.
To enable SSH, run: apt install openssh-server
No default root or user password are set by LXC.
zak@ubuntu20:~$ lxc-start -n unpriv-cont-user -d
zak@ubuntu20:~$
zak@ubuntu20:~$ lxc-ls -f
NAME STATE AUTOSTART GROUPS IPV4 IPV6 UNPRIVILEGED
unpriv-cont-user STOPPED 0 - - - true
zak@ubuntu20:~$ lxc-info -n unpriv-cont-user
Name: unpriv-cont-user
State: STOPPED
zak@ubuntu20:~$0 -
If I try it with
sudo lxc-startI'm getting the same error as above.zak@ubuntu20:~$ sudo lxc-start -n unpriv-cont-user -d
[sudo] password for zak:
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 266 No container config specified0 -
Note: I'm running Ubuntu 20.04 in virt-manager as the host OS for lxc.
0 -
I seem to have gotten it to work.
I tried the fix in this guide: Lab 3.2 LXC.
Also, I seem to have to do everything as sudo, but when I do that it seems to work.
Here is a log of my command line session:
zak@ubuntu20:~$ setfacl -R -m u:100000:x ~/.local
setfacl: /home/zak/.local/share/containers/storage/overlay/40563e6a01a74e110bb85bdd2ac8a9e9f89f3d2c921786a495306be0bfdbf638/diff/var/cache/apt/archives/partial: Operation not permitted
setfacl: /home/zak/.local/share/containers/storage/overlay/40563e6a01a74e110bb85bdd2ac8a9e9f89f3d2c921786a495306be0bfdbf638/diff/var/cache/apt/archives/partial: Permission deniedzak@ubuntu20:~$ sudo setfacl -R -m u:100000:x ~/.localzak@ubuntu20:~$ sudo setfacl -m u:100000:x ~/zak@ubuntu20:~$ lxc-create --template download --name unpriv-cont-user
Downloading the image indexDIST RELEASE ARCH VARIANT BUILD
almalinux 10 amd64 default 20251107_23:08
almalinux 10 arm64 default 20251107_23:08
...Distribution:
ubuntu
Release:
questing
Architecture:
amd64Downloading the image index
Downloading the rootfs
Downloading the metadata
The image cache is now ready
Unpacking the rootfsYou just created an Ubuntu questing amd64 (20251107_07:42) container.
To enable SSH, run: apt install openssh-server
No default root or user password are set by LXC.zak@ubuntu20:~$ lxc-start -n unpriv-cont-user -d
lxc-start: unpriv-cont-user: lxccontainer.c: wait_on_daemonized_start: 877 Received container state "ABORTING" instead of "RUNNING"
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 306 The container failed to start
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 309 To get more details, run the container in foreground mode
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 311 Additional information can be obtained by setting the --logfile and --logpriority optionszak@ubuntu20:~$ lxc-start -n unpriv-cont-user
lxc-start: unpriv-cont-user: lxccontainer.c: wait_on_daemonized_start: 877 Received container state "ABORTING" instead of "RUNNING"
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 306 The container failed to start
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 309 To get more details, run the container in foreground mode
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 311 Additional information can be obtained by setting the --logfile and --logpriority optionszak@ubuntu20:~$ lxc-start -n unpriv-cont-user --
--close-all-fds --foreground --name= --share-net
--console= --help --pidfile= --share-uts
--console-log= --logfile= --quiet --usage
--daemon --logpriority= --rcfile= --version
--define --lxcpath= --share-ipczak@ubuntu20:~$ lxc-start -n unpriv-cont-user --foreground
lxc-start: unpriv-cont-user: network.c: lxc_create_network_unpriv_exec: 2976 lxc-user-nic failed to configure requested network: cmd/lxc_user_nic.c: 1206: main: Quota reached
lxc-start: unpriv-cont-user: start.c: lxc_spawn: 1843 Failed to create the network
lxc-start: unpriv-cont-user: start.c: __lxc_start: 2074 Failed to spawn container "unpriv-cont-user"
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 306 The container failed to start
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 311 Additional information can be obtained by setting the --logfile and --logpriority optionszak@ubuntu20:~$ sudo lxc-start -n unpriv-cont-user -d
lxc-start: unpriv-cont-user: tools/lxc_start.c: main: 266 No container config specifiedzak@ubuntu20:~$ sudo lxc-create --template download --name unpriv-cont-user -- --dist ubuntu --release jammy --arch amd64
Downloading the image index
Downloading the rootfs
Downloading the metadata
The image cache is now ready
Unpacking the rootfsYou just created an Ubuntu jammy amd64 (20251107_07:42) container.
To enable SSH, run: apt install openssh-server
No default root or user password are set by LXC.zak@ubuntu20:~$ sudo lxc-start -n unpriv-cont-user -dzak@ubuntu20:~$ lxc-ls -f
NAME STATE AUTOSTART GROUPS IPV4 IPV6 UNPRIVILEGED
unpriv-cont-user STOPPED 0 - - - truezak@ubuntu20:~$ sudo lxc-ls -f
NAME STATE AUTOSTART GROUPS IPV4 IPV6 UNPRIVILEGED
unpriv-cont-user RUNNING 0 - 10.0.3.176 - falsezak@ubuntu20:~$zak@ubuntu20:~$ sudo lxc-info -n unpriv-cont-user
Name: unpriv-cont-user
State: RUNNING
PID: 4265
IP: 10.0.3.176
CPU use: 0.69 seconds
BlkIO use: 21.76 MiB
Memory use: 31.18 MiB
KMem use: 6.52 MiB
Link: vethkONNnj
TX bytes: 1.86 KiB
RX bytes: 2.72 KiB
Total bytes: 4.58 KiB0 -
Hi @zacts,
As cgroup v2 was adopted across Ubuntu releases beginning with 20.04 LTS, the successfully tested Ubuntu OS release seems to have been downgraded to Ubuntu OS Bionic release 18.04 LTS - defaulting to cgroup v1. Over time, the changes in support have severely impacted especially the unprivileged container deployment.
Course content updates are in progress, aiming for a more recent LTS release as the container host for the course lab exercises. This will most likely conflict with the LXC lab exercises in their current format. Perhaps LXC lab will remain in the curriculum as an optional lab exercise, which will require special container host considerations - such as setting up a virtual container host (VM) with the supported Ubuntu 18.04 LTS only for the purpose of LXC experimentation. Luckily the release is still available to download from the Ubuntu releases page

Regards,
-Chris0
Categories
- All Categories
- 158 LFX Mentorship
- 158 LFX Mentorship: Linux Kernel
- 855 Linux Foundation IT Professional Programs
- 390 Cloud Engineer IT Professional Program
- 186 Advanced Cloud Engineer IT Professional Program
- 90 DevOps IT Professional Program
- DevOps & GitOps IT Professional Program
- 158 Cloud Native Developer IT Professional Program
- 153 Express Training Courses & Microlearning
- 150 Express Courses - Discussion Forum
- 3 Microlearning - Discussion Forum
- 7.2K Training Courses
- 50 LFC110 Class Forum - Discontinued
- 74 LFC131 Class Forum - DISCONTINUED
- 56 LFD102 Class Forum
- 259 LFD103 Class Forum
- LFD103-JP クラス フォーラム
- 27 LFD110 Class Forum
- 50 LFD121 Class Forum
- 3 LFD123 Class Forum
- 1 LFD125 Class Forum
- 19 LFD133 Class Forum
- 10 LFD134 Class Forum
- 19 LFD137 Class Forum
- 1 LFD140 Class Forum
- 73 LFD201 Class Forum
- 8 LFD210 Class Forum
- 6 LFD210-CN Class Forum
- 2 LFD213 Class Forum - Discontinued
- LFD221 Class Forum
- 128 LFD232 Class Forum - Discontinued
- 3 LFD233 Class Forum - Discontinued
- 5 LFD237 Class Forum
- 25 LFD254 Class Forum
- 752 LFD259 Class Forum
- 111 LFD272 Class Forum - Discontinued
- 4 LFD272-JP クラス フォーラム - Discontinued
- 16 LFD273 Class Forum
- 481 LFS101 Class Forum
- 4 LFS111 Class Forum
- 4 LFS112 Class Forum
- 5 LFS116 Class Forum
- 9 LFS118 Class Forum
- 2 LFS120 Class Forum
- LFS140 Class Forum
- 12 LFS142 Class Forum
- 9 LFS144 Class Forum
- 6 LFS145 Class Forum
- 6 LFS146 Class Forum
- 7 LFS147 Class Forum
- 21 LFS148 Class Forum
- 17 LFS151 Class Forum
- 6 LFS157 Class Forum
- 91 LFS158 Class Forum
- 1 LFS158-JP クラス フォーラム
- 14 LFS162 Class Forum
- 2 LFS166 Class Forum - Discontinued
- 9 LFS167 Class Forum
- 5 LFS170 Class Forum
- 2 LFS171 Class Forum - Discontinued
- 4 LFS178 Class Forum - Discontinued
- 4 LFS180 Class Forum
- 3 LFS182 Class Forum
- 7 LFS183 Class Forum
- 2 LFS184 Class Forum
- 41 LFS200 Class Forum
- 737 LFS201 Class Forum - Discontinued
- 3 LFS201-JP クラス フォーラム - Discontinued
- 23 LFS203 Class Forum
- 141 LFS207 Class Forum
- 3 LFS207-DE-Klassenforum
- 3 LFS207-JP クラス フォーラム
- 302 LFS211 Class Forum - Discontinued
- 56 LFS216 Class Forum - Discontinued
- 60 LFS241 Class Forum
- 51 LFS242 Class Forum
- 41 LFS243 Class Forum
- 17 LFS244 Class Forum
- 8 LFS245 Class Forum
- 1 LFS246 Class Forum
- 1 LFS248 Class Forum
- 124 LFS250 Class Forum
- 3 LFS250-JP クラス フォーラム
- 2 LFS251 Class Forum - Discontinued
- 163 LFS253 Class Forum
- 1 LFS254 Class Forum - Discontinued
- 3 LFS255 Class Forum
- 16 LFS256 Class Forum
- 2 LFS257 Class Forum
- 1.4K LFS258 Class Forum
- 12 LFS258-JP クラス フォーラム
- 142 LFS260 Class Forum
- 165 LFS261 Class Forum
- 45 LFS262 Class Forum
- 82 LFS263 Class Forum - Discontinued
- 15 LFS264 Class Forum - Discontinued
- 11 LFS266 Class Forum - Discontinued
- 25 LFS267 Class Forum
- 27 LFS268 Class Forum
- 38 LFS269 Class Forum
- 11 LFS270 Class Forum
- 202 LFS272 Class Forum - Discontinued
- 2 LFS272-JP クラス フォーラム - Discontinued
- 2 LFS274 Class Forum - Discontinued
- 4 LFS281 Class Forum - Discontinued
- 30 LFW111 Class Forum
- 265 LFW211 Class Forum
- 190 LFW212 Class Forum
- 17 SKF100 Class Forum
- 2 SKF200 Class Forum
- 3 SKF201 Class Forum
- 800 Hardware
- 200 Drivers
- 68 I/O Devices
- 37 Monitors
- 104 Multimedia
- 175 Networking
- 92 Printers & Scanners
- 85 Storage
- 765 Linux Distributions
- 82 Debian
- 67 Fedora
- 20 Linux Mint
- 13 Mageia
- 23 openSUSE
- 149 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 472 Linux System Administration
- 39 Cloud Computing
- 71 Command Line/Scripting
- Github systems admin projects
- 96 Linux Security
- 78 Network Management
- 102 System Management
- 48 Web Management
- 74 Mobile Computing
- 19 Android
- 42 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 389 Off Topic
- 121 Introductions
- 179 Small Talk
- 28 Study Material
- 884 Programming and Development
- 312 Kernel Development
- 554 Software Development
- 1.8K Software
- 270 Applications
- 183 Command Line
- 5 Compiling/Installing
- 988 Games
- 320 Installation
- 109 All In Program
- 109 All In Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)
