关机重启

  1. 基本介绍
    • shutdown -h now 立即关机
    • shutdown -h 1 1分钟后关机
    • shutdown -r now 立即重启
    • halt 关机 作用和上面一致
    • reboot 重启
    • sync 先把内存的数据同步到磁盘
  2. 注意细节
    • 不管是重启还是关机,先要运行sync 把内存中的数据写回磁盘
    • 目前的shutdown/reboot/half 等命令均已在关机前进行了sync 不过小心为妙

指定运行级别

  1. 运行级别说明
    0:关机
    1:单用户【找回丢失密码】
    2:多用户状态没有网络服务
    3:多用户状态有网络服务
    4:系统未使用保留给用户
    5:图形界面
    6:系统重启
  2. 指令
    init

    1. [root@localhost home]# init 5
    2. [root@localhost home]# init 3
    3. [root@localhost home]# init 0

    指定默认运行级别

  3. systemctl get-default 查找默认运行级别

  4. systemctl set-default xxx.target 改变默认运行级别

    • multi-user.target 多用户状态无网络
    • graphical.target 图形界面

      找回root密码

  5. 指令

    1. 重启
      • shutdown -r now
    2. 开始界面
      • 按’e’进入boot
    3. 找到“Linux16……UTF-8”
      • 末尾加上init=/bin/sh然后
      • enter
    4. 进入单用户模式
      • 系统基本指令 - 图1
    5. mount -o remount,rw /
    6. passwd
    7. touch /.autorelabel
    8. exec /sbin/init
  6. 具体步骤

找回root密码