0

How to check which service will be start at boot time.And also how to enable or disable any service from boot time.

1 Answers1

1

If your environment is using systemd to start services at boot time then you can use the command line tool called systemd-analyze You need to specify what distribution you are using.to list the services which starts at boot time you can use the below command,

systemd-analyze blame user

You can list the services with respect to system and user. For more information systemd-analyze --help.

Thushi
  • 131
  • 1
  • 6