What is the first program that is usually started, at boot time, by the Linux kernel when using SysV init?
What is the first program that is usually started, at boot time, by the Linux kernel when using SysV init?
/sbin/init is the first program that is usually started, at boot time, by the Linux kernel when using SysV init. The init program is the initial process that is responsible for starting other system services and processes, and it has the process ID (PID) of 1. This location is standard across Unix-like operating systems that use SysV-style init systems.
Option B. /sbin/init is the first program that is usually started, at boot time, by the Linux kernel when using SysV init. The init program is the first process that is started by the kernel when the system boots up. It is responsible for starting and managing system services and daemons at boot time and during system operation. On systems using SysV init, the init program is typically located at /sbin/init. Option A: /lib/init.so is not the first program that is started at boot time by the kernel. It is a shared object file that may be used by other programs, but it is not an executable program itself.
Option C: /etc/rc.d/rcinit is not the first program that is started at boot time by the kernel. It is a script that may be used to perform additional tasks at boot time, but it is not the first program that is started. Option D: /proc/sys/kernel/init is not a program and is not executed by the kernel at boot time. It is a virtual file in the /proc filesystem that can be used to control certain aspects of the kernel's behavior. Option E: /boot/init is not the first program that is started at boot time by the kernel. It is a directory that may contain files used by the boot process, but it is not an executable program itself.
...runs /sbin/init which is process number 1 (PID=1)... https://en.wikipedia.org/wiki/Linux_startup_process#cite_note-oldfield-6
i still think its /etc/rc.d/rcint / check the link https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/installation_guide/s2-boot-init-shutdown-init. When the init command starts, it becomes the parent or grandparent of all of the processes that start up automatically on the system. First, it runs the /etc/rc.d/rc.sysinit script,
Answer C is correct. /sbin/init https://www.thegeekstuff.com/2011/02/linux-boot-process/ This is the first process that is initiated by the Kernel. The /etc/rc.d/ecint is initiated further down the line on the RunLevel.
why not /etc/rc.d/rcinit?
it is /etc/rc.d/rcint http://www.qnx.com/developers/docs/qnxcar2/index.jsp?topic=%2Fcom.qnx.doc.neutrino.user_guide%2Ftopic%2Fstarting_rc.sysinit.html