I'm confused in this zoo of initialization systems.
init is the equivalent of SysVinit?
init=/путь/к/файлу - this is just one of the parameters of the linux program, indicating which file should be run after the initialization process of the linux program itself (in fact, this is practically the only one (besides unpacking the initrd and mounting the root fs) and the last “active” action that the linux program performs). from this point on, it can be said that the operating system begins.
by default, this parameter is /sbin/init .
sysv-init (more correctly, probably, to say sysv-style init ) is only one of the "styles" of initialization of the operating system. There are, of course, different implementations of this "style." and there are other "styles".
specifying: no, the linux program parameter called init is not sysv-style init .
A typical implementation of sysv-style init , used, for example, in the sysvinit package in debian- core distributions is the System V style init programs .
typical implementations of other styles are upstart , systemd , etc. etc.; many are listed in the init wiki article .
N 5 - that is, the fifth launch level. - aryndinSource: https://ru.stackoverflow.com/questions/518181/
All Articles