CentOS7.4安装GUI图形界面

1、首先安装X(X Window System),命令为

yum groupinstall -y "X Window System" 回车

2、由于这个软件组比较大,安装过程会比较慢,安装完成会出现complete!

3、检查一下我们已经安装的软件以及可以安装的软件,用命令

yum grouplist 回车

4、然后安装我们需要的图形界面软件,GNOME(GNOME Desktop),命令为

yum groupinstall -y "GNOME Desktop"

安装过程中可能会报错,我这里安装的时候报的是

Transaction check error:
file /boot/efi/EFI/centos from install of fwupdate-efi-12-5.el7.centos.x86_64 conflicts with file from package grub2-common-1:2.02-0.65.el7.centos.2.noarch
解决办法:

fwupdate-efi 与 grub2-common 冲突
在CentOS-7.4系统中使用命令如下命令yum groupinstall -y "GNOME Desktop"安装 图形界面时提示:fwupdate-efi 与 grub2-common 冲突 ,

这是由于grub2-common包的冲突,所以要将该包使用yum update grub2-commonn命令进行更新。

执行命令:yum update grub2-common

执行命令:yum install fwupdate-efi
然后再重新执行:yum groupinstall -y "GNOME Desktop"

经过上面的操作,系统启动默认还是命令行页面的,需要我们进行切换。如果想要使系统启动即为图形化窗口,需要执行下面的命令

ln -sf /lib/systemd/system/runlevel5.target /etc/systemd/system/default.target

执行reboot重启系统

你可能感兴趣的:(linux)