How to view the startup services in Ubuntu?

In Ubuntu, you can use the following command to view the running services:

  1. system control manager
systemctl status <service_name>

In this case, is the name of the service to be viewed.

  1. system control/cmd
systemctl list-units --type=service --state=running
  1. assistance
service <service_name> status

The is the name of the service to be viewed.

  1. ps – I only need one version of the paraphrased text.
ps aux | grep <service_name>

Among them, is the name of the service to be viewed.

By using the above command, you can check the status and process information of the service to determine if it is running.

bannerAds