usefull systemctl command

# List all services (including inactive ones)
systemctl list-units --type=service --all

# List only active services
systemctl list-units --type=service --state=active

# List all service files (even if not running)
systemctl list-unit-files --type=service