sbininit
sbininit is the conventional name for the initial user-space process started by the kernel during the boot sequence on many Unix-like systems. It is typically the executable located at /sbin/init and runs with PID 1, making it the root of the user-space process tree. The primary role of sbininit is to bootstrap the operating system by starting essential system services, spawning login prompts, and applying initial system configuration so that the rest of the services can come online.
Historically, sbininit and its behavior varied across Unix flavors. In BSD-style systems, init read startup scripts
In modern environments, there are several init implementations. Traditional SysVinit and BSD init have largely given
As the first process with root privileges, sbininit is a critical component of system boot and maintenance.