Home > Article > Operation and Maintenance > How to set CentOS system to boot into desktop mode
First of all, we know that 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 up to boot into the desktop What about patterns?
The method is as follows:
View the current running level:
systemctl get-default
Set the boot to enter the graphical interface:
systemctl set-default graphical.target
Extension:
Set the boot Enter the command line:
systemctl set-default multi-user.target
Related video tutorial recommendations: linux video tutorial
The above is the detailed content of How to set CentOS system to boot into desktop mode. For more information, please follow other related articles on the PHP Chinese website!