05.Linux Startup & Shutdown

1.boot sequence

  • load bois(bois是固化在主板上的一系列程序),通电自检(自检hardware information)
  • read MBR’s config to find  out the OS,读取第一个磁头、第一个磁道、第一个扇区信息(分区表),找到需要启动的OS
  • load the kernel of the OS,加载系统的核心文件
  • init process starts ,初始化进程
  • execute /etc/rc.d/sysinit 运行etc目录下的rc(run commond).d(精灵线程)...简单说就是服务器的进程
  • start Other modules(etc/module.conf),启动模块功能
  • execute run level scripts
    • 0-系统停机状态
    • 1-单用户工作状态
    • 2-多用户状态(没有NFS)
    • 3-多用户状态(有NFS)
    • 4-系统保留,未使用
    • 5-图形界面
    • 6-系统正常关闭并重新启动
  • execute /etc/rc.d/rc.local
  • execute  /bin/login
  • shell started
原文地址:https://www.cnblogs.com/albert-xm/p/5124927.html