系统默认 以某种方式启动
使用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
时间: 2024-11-05 20:36:48