Fedora 41 has incus in the official repos now. So i wanted to try it out. I setup a fresh fedora 41 server with btrfs and installed incus directly from dnf.
I then enables incus with systemd and ran
# echo "root:1000000:1000000000" >> /etc/subuid
# echo "root:1000000:1000000000" >> /etc/subgid
as described in Getting Started with Incus on Fedora · ganto/copr-lxc4 Wiki · GitHub linked from the incus docs.
However then running
incus launch images:alpine/edge alpine1 results in
Error: Failed instance creation: Failed to run: /usr/libexec/incus/incusd forkstart alpine1 /var/lib/incus/containers /run/incus/alpine1/lxc.conf: exit status 1
here is the output of incus info for the container
# incus info --show-log alpine1
Name: alpine1
Status: STOPPED
Type: container
Architecture: x86_64
Created: 2024/11/15 21:36 CET
Last Used: 1970/01/01 01:00 CET
Log:
lxc alpine1 20241115203711.737 ERROR utils - ../src/lxc/utils.c:run_buffer:571 - Script exited with status 1
lxc alpine1 20241115203711.737 ERROR start - ../src/lxc/start.c:lxc_init:845 - Failed to run lxc.hook.pre-start for container "alpine1"
lxc alpine1 20241115203711.737 ERROR start - ../src/lxc/start.c:__lxc_start:2034 - Failed to initialize container "alpine1"
lxc alpine1 20241115203711.761 ERROR utils - ../src/lxc/utils.c:run_buffer:571 - Script exited with status 1
lxc alpine1 20241115203711.761 ERROR start - ../src/lxc/start.c:lxc_end:945 - Failed to run "lxc.hook.stop" hook
lxc alpine1 20241115203712.292 ERROR utils - ../src/lxc/utils.c:run_buffer:571 - Script exited with status 1
lxc alpine1 20241115203712.292 ERROR start - ../src/lxc/start.c:lxc_end:986 - Failed to run lxc.hook.post-stop for container "alpine1"
lxc alpine1 20241115203712.292 ERROR lxccontainer - ../src/lxc/lxccontainer.c:wait_on_daemonized_start:829 - No such file or directory - Failed to receive the container state
any ideas what to do? Am i holding it wrong or is the official fedora package broken?