Usefull linux commands
systemctl stuff
Enable autostart of service
sudo systemctl enable SERVICENAME
If you wamt to start and enable it in a oneliner, here it is.
sudo systemctl enable --now SERVICENAME
Disable autostart of service
sudo systemctl disable SERVICENAME
List all services
sudo systemctl list-units --type service
open-rc stuff
Enable autostart of service
sudo rc-update add SERVICENAME