码迷,mamicode.com
首页 > 其他好文 > 详细

开机启动流程

时间:2020-05-24 00:19:04      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:启动脚本   targe   emctl   bash   脚本   相关   res   src   ima   

开机启动流程

CentOS6

1.内核引导

加电自检,检查bios的配置,检测硬件,开机

2.运行init

  • 0:关机
  • 1:单用户模式
  • 2:多用户模式(没有文件系统和网络)
  • 3:多用户模式(命令行,默认模式)
  • 4:没有使用的模式
  • 5:多用户模式(图形化界面)
  • 6:重启

3.系统初始化

4.建立终端

5.用户登录

## 关机命令
init 0
halt
shutdown -h now
shutdown -h 20:20
shutdown -h +10
poweroff

## 重启命令
init 6
reboot
shutdown -r now
shutdonw -r 20:20
shutdown -r +10

技术图片

CentOS7开机启动流程

1.BIOS(开机自检)
2.MBR ( Master Boot Record 主引导记录)
3.GRUB2 Bootloader(引导菜单)
4.Kernel(内核引导)
5.Systemd (不再使用init,改成了systemd)

6.Runlevel-Target (运行级别)

运行级别:

init 0.target -> poweroff.target		# 关机
init 1.target -> rescue.target			# 单用户模式
init 2.target -> multi-user.target		# 多用户模式(没有文件系统和网络)
init 3.target -> multi-user.target		# 多用户模式(命令行)
init 4.target -> multi-user.target		# 多用户模式(还是没有被使用)		
init 5.target -> graphical.target		# 图形化模式
init 6.target -> reboot.target			# 重启
# 获取当前默认的运行级别
[root@qls ~]# systemctl get-default
multi-user.target

# 修改运行级别
[root@qls ~]# systemctl set-default poweroff

## 使用两条命令修改默认运行级别
[root@qls ~]# rm -f /etc/systemd/system/default.target
[root@qls ~]# ln -s /usr/lib/systemd/system/poweroff.target /etc/systemd/system/default.target


## 相关目录
[root@qls ~]# ll /etc/systemd/system   (默认的运行级别)
[root@qls ~]# ll /usr/lib/systemd/system (运行级别和服务启动脚本)

技术图片

详解

技术图片

开机启动流程

标签:启动脚本   targe   emctl   bash   脚本   相关   res   src   ima   

原文地址:https://www.cnblogs.com/mdddm/p/12945186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!