Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Check Whether a Linux Is Using upstart, systemd or SysV

The simplest way to check whether a Linux system is running systemd, upstart or SysV is by running the following command.

:::bash
ps -p1 | grep "init\|upstart\|systemd"

References

How to determine which system manager is running on Linux System

How to know if I am using systemd on Linux?