skip to content
Alvin Lucillo

Check the init system

/ 1 min read

An init system like systemd is the first process the Linux kernal starts and has PID 1. One of its tasks is to launch background process.

To check that, use the command below. The command shows information about PID 1.

ps -p 1
    PID TTY          TIME CMD
      1 ?        00:00:01 systemd
``