首先来更新一下软件列表
yum update #更新软件列表
接下来安装桌面环境
yum -y groups install "GNOME Desktop" #安装桌面环境
再来启动桌面
startx #启动应用程序
我们可以让系统开机自动启动桌面环境
1.systemctl get-default命令获取当前模式
2.systemctl set-default graphical.target 修改启动模式(修改为图形界面,要是修改为命令行就multi-user.target)
2.systemctl set-default multi-user.target 修改启动模式
3.reboot重新启动就可以了
评论