————————————————

报错,如下:

bash :startx command not found

————————————————

解决方法:

1.先安装 — X Windows System,输入以下命令:
yum groupinstall “X Window System”
中间的选项都选 y,若出现 complete 则表示安装完成!

2.然后安装图形界面软件
yum groupinstall “GNOME”
中间的选项都选 y,若出现complete则表示安装完成

3.设置开机默认启动界面为图形化界面,输入以下命令:
systemctl set-default graphical.target

4.重启或输入startx即可!

5.设置桌面尺寸
xrandr
xrandr -s 1440×768
————————————————

快速解决方案(实测有效):

进行解决方法的第1步和第2步,然后,如果输入startx出不来,再试试这个命令:
yum install xorg-x11-xinit

输入命令startx就出来了!

————————————————