How to list startup services at boot time in Fedora Linux

How to list startup services at boot time in Fedora Linux

To list startup services at boot time in Fedora Linux, follow these steps:

  1. Open a terminal and run the following command:
refer‮‬ to:lautturi.com
systemctl list-units --type=service

This will display a list of all services on the system, including those that are enabled to start at boot time.

  1. To list only the services that are enabled to start at boot time, run the following command:
systemctl list-unit-files --type=service | grep enabled

This will display a list of all services that are enabled to start at boot time, along with their status.

  1. To list only the names of the services that are enabled to start at boot time, run the following command:
systemctl list-unit-files --type=service | grep enabled | awk '{ print $1 }'

This will display a list of the names of all services that are enabled to start at boot time, one per line.

That's it! You now have a list of startup services at boot time on your Fedora Linux system.

Created Time:2017-10-16 14:38:50  Author:lautturi