# Systemd
# Enable/Disable Service
# Enable and start service at the same time
systemctl enable <service> --now
# Disable and stop service at the same time
systemctl disable <service> --now
# List Services
# Show Services
systemctl --type=service
# Show services that are running
systemctl --type=service --state=running
# Show services that are disabled
systemctl list-unit-files --type=service --state=disabled