Files
Boilerplates/Linux/UsefullCommands
2023-11-26 17:52:58 +01:00
..
2023-11-26 17:52:58 +01:00

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