The running levels of the command line and the graphical interface are different, as follows:
multi-user.target: Run level 3 (command line)
graphical.target: Run level 5 (graphical interface)
(Recommended tutorial: centos usage tutorial)
So, how to set the system to boot into the command line mode? ?
The method is as follows:
1. Check the current running level:
systemctl get-default
2. Set the boot command line:
systemctl set-default multi-user.target
Extension:
Set up to boot into the graphical interface:
systemctl set-default graphical.target
Recommended related video tutorials: linux video tutorial
The above is the detailed content of How to boot CentOS into command line mode. For more information, please follow other related articles on the PHP Chinese website!