-
Hello, I encountered this problem Currently Supervisor requires CGroup v1 in a supervised installation. Armbian describes a fix method, but we have a different loading method, as I understand it... systemd.unified_cgroup_hierarchy=0 I have a system and boot from emmc. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Add the following line in /boot/boot.config:
This will add the parameter at the end of the bootargs variable which in turn will become the kernel's command-line parameters. After booting you can check with Good luck! |
Beta Was this translation helpful? Give feedback.
-
It worked, great!!! |
Beta Was this translation helpful? Give feedback.
Add the following line in /boot/boot.config:
bootargs0=systemd.unified_cgroup_hierarchy=0
This will add the parameter at the end of the bootargs variable which in turn will become the kernel's command-line parameters.
After booting you can check with
cat /proc/cmdline
Good luck!