You can see all running services via systemctl.
$ systemctl

If you want to terminate a service:
sudo systemctl disable <service name>
$ sudo systemctl disable lightdm.service

You can start manually whenever you want :
sudo systemctl start <service name>
$ sudo systemctl start lightdm.service
Be First to Comment