运行模式切换,开关机方式(rhel)

1.查看当前默认运行模式

systemctl default

2.设置默认运行模式为图形界面,需要重启

systemctl set-default graphical.target

3.设置默认运行模式为多用户字符模式,需要重启

systemctl set-default multi-user.target

4.设置当前运行模式为图形界面,及时生效

systemctl isolate graphical.target

5.设置当前运行模式为多用户字符模式,及时生效。

systemctl isolate multi-user.target

6.救援模式,可以找回忘了密码可以使用。

systemctl isolate rescue.target

 

二.

命令行重启系统

systemctl reboot

关闭CPU不断电

systemctl halt

断电关机

systemctl poweroff

睡眠,内存供电

systemctl suspend

休眠

systemctl bihernate

睡眠,休眠混合

systemctl hybrid-sleep

注销

ctrl+D

exit

logout

你可能感兴趣的:(rhel,linux)