Linux init source code

I want to find out exactly what happens in the init (/ sbin / init) process of Linux, but it's pretty hard to find. Could you tell me who supports the source code of the init process?

+8
linux
source share
3 answers

It depends on the version of Linux. Traditionally used sysvinit .

These days, many Linux distributions use upstart .

Some others, such as Fedora, use systemd .

+10
source share

You can download the sysvinit package source code here .

Please note that some Linux distributions no longer use the System V Init. For example, Debian, Fedora, and Ubuntu use upstart .

+4
source share

There are several options for init. Many Linux distributions use systemd, while Ubuntu, for example, uses an upstart. Source code can be downloaded from the project website or using the system package manager.

0
source share

All Articles