首页 > 代码库 > centos7 设置系统默认启动的界面

centos7 设置系统默认启动的界面

系统默认 以某种方式启动 

 

使用systemd创建符号链接指向默认运行级别。

 修改方法为:在root下

1.首先删除已经存在的符号链接
rm /etc/systemd/system/default.target
----------------------------------------------------------------------------------
2.默认级别转换为3(DOS模式)
ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
----------------------------------------------------------------------------------
或者 默认级别转换为5(图形模式)
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
----------------------------------------------------------------------------------
3.重启
reboot

centos7 设置系统默认启动的界面