Skip to main content

Below is a list of post-release service announcements.

📌 PSA 13/11/23

PSA: If, after adding a wireless network different from the network used during installation, the connection is not saved and the network needs to be added again, follow these steps to make it persistent across reboots. After the steps below, add a wireless network and reboot to test its persistence.

sudo overlayroot-chroot
mount -t devtmpfs dev /dev

#   Change path of NM keyfiles
echo -e "\n[keyfile]\npath=/var/lib/NetworkManager" | tee -a /etc/NetworkManager/NetworkManager.conf

umount /dev
exit

#   Reboot
sudo reboot

📌 PSA 12/11/23

PSA: We have detected a misconfiguration in the OpenRC configuration file that causes CGroups to fall back to hybrid mode. Do the following to fix the problem.

sudo overlayroot-chroot
mount -t devtmpfs dev /dev

#   Uncomment necessary setting
sed -i 's/#rc_cgroup_mode="unified"/rc_cgroup_mode="unified"/g' /etc/rc.conf

umount /dev
exit

#   Reboot
sudo reboot