New comment by sbromberger on void-packages repository https://github.com/void-linux/void-packages/pull/47573#issuecomment-1869754443 Comment: I managed to get incus running on void a couple days ago. here's my runit service if it helps: ``` #!/bin/sh exec 2>&1 _systemd_cgrp="/sys/fs/cgroup/systemd" if [ ! -d ${_systemd_cgrp} ]; then mkdir ${_systemd_cgrp} fi if ! mountpoint -q "${_systemd_cgrp}"; then mount -t cgroup -o none,name=systemd cgroup ${_systemd_cgrp} fi [ -r conf ] && . ./conf exec /usr/local/bin/incusd --group incus-admin --syslog ${OPTS:- --verbose} ```