关机重启
- 基本介绍
- shutdown -h now 立即关机
- shutdown -h 1 1分钟后关机
- shutdown -r now 立即重启
- halt 关机 作用和上面一致
- reboot 重启
- sync 先把内存的数据同步到磁盘
- 注意细节
- 不管是重启还是关机,先要运行sync 把内存中的数据写回磁盘
- 目前的shutdown/reboot/half 等命令均已在关机前进行了sync 不过小心为妙
指定运行级别
- 运行级别说明
0:关机
1:单用户【找回丢失密码】
2:多用户状态没有网络服务
3:多用户状态有网络服务
4:系统未使用保留给用户
5:图形界面
6:系统重启 指令
init[root@localhost home]# init 5
[root@localhost home]# init 3
[root@localhost home]# init 0
指定默认运行级别
systemctl get-default
查找默认运行级别systemctl set-default xxx.target
改变默认运行级别指令
- 重启
shutdown -r now
- 开始界面
- 按’e’进入boot
- 找到“Linux16……UTF-8”
- 末尾加上
init=/bin/sh
然后 enter
- 末尾加上
- 进入单用户模式
- 按
mount -o remount,rw /
passwd
touch /.autorelabel
exec /sbin/init
- 重启
- 具体步骤