Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Source code of linux init process [closed]

Tags:

linux

I want to figure out what is exactly going on in init process (/sbin/init) of Linux, but it is quite hard to find one. Could you tell me who maintains the source code of init process?

like image 628
jaeyong Avatar asked Mar 22 '13 07:03

jaeyong


2 Answers

It depends on Linux version. Traditionally, sysvinit was used.

These days, many Linux distros use upstart.

Some others, like Fedora, are using systemd.

like image 112
mvp Avatar answered Oct 14 '22 09:10

mvp


You can download the source code of the sysvinit package here.

Note that some Linux distributions do not use System V Init anymore. For instance, Debian, Fedora and Ubuntu use upstart instead.

like image 44
Frédéric Hamidi Avatar answered Oct 14 '22 09:10

Frédéric Hamidi