检查硬件:cpu、内存、主板....
检查完毕将启动任务交给相应的设备(BIOS设置的启动顺序)
(2). MBR引导(读硬盘的那个地方)硬盘0柱面0磁道1扇区的前446byte
(3)grub引导菜单 (控制了linux的启动)[[email protected] ~]# cat /etc/grub.conf # grub.conf generated by anaconda## Note that you do not have to rerun grub after making changes to this file# NOTICE: You have a /boot partition. This means that# all kernel and initrd paths are relative to /boot/,eg.# root (hd0,0)# kernel /vmlinuz-version ro root=/dev/sda3# initrd /initrd-[generic-]version.img#boot=/dev/sdadefault=0 #启动那一个内核文件timeout=5 #超时splashimage=(hd0,0)/grub/splash.xpm.gzhIDdenmenuTitle CentOS 6 (2.6.32-754.el6.x86_64) root (hd0,0) kernel /vmlinuz-2.6.32-754.el6.x86_64 ro root=UUID=ad36a095-56bf-4e0f-a120-6a8fb7420cfc rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFont=latarcyrheb-sun16 crashkernel=auto KEYBOARDTYPE=pc KEYtable=us rd_NO_DM rhgb quIEt initrd /initramfs-2.6.32-754.el6.x86_64.img(4).加载内核文件 (5).启动init进程
[[email protected] ~]# ps -ef|grep initroot 1 0 0 18:53 ? 00:00:01 /sbin/initroot 24716 1816 0 19:26 pts/0 00:00:00 grep init(6).读取inittab文件,执行rc,sysinit,rc等脚本
/etc/inittab #设置运行级别/etc/rc.d/rc.sysinit #对系统进行基本设置,如设置主机名,设备自动挂载/etc/rc.d/rc3.d/ #运行级别为3,文本模式[[email protected] ~]# chkconfig --List sshdsshd 0:off 1:off 2:on 3:on 4:on 5:on 6:off(7).启动mingetty进程,进入系统登录界面 2.简单图解表示(画图) 总结
以上是内存溢出为你收集整理的Linux启动过程全部内容,希望文章能够帮你解决Linux启动过程所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)