Fabric学习笔记(2)

《区块链轻松上手》Demo 安装图形界面问题


浏览器输入https://github.com/MyCATApache/SuperLedger
下载Fabric_demo 压缩包
在VM中运行 Fabric_Demo.vmx
在输入root密码 111111
依次输入:
1.yum groupinstall “X Window System”  //注意有引号
2.yum grouplist //检查已安装文件及可安装文件
3.yum groupinstall “GNOME Desktop” “Graphical Administration Tools”
Fabric学习笔记(2)

问题所在

error:file /boot/efi/EFI/centos from install of fwupdate-efi-12-5.e17.centos.x86_64 conflicts with file 。。。。
原因是:

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

yum update grub2-common
yum install fwupdate-efi

4.重新输入yum groupinstall “GNOME Desktop” “Graphical Administration Tools”

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

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

REFERENCE:
https://www.linuxidc.com/Linux/2018-04/152000.htm
https://blog.csdn.net/zy1471162851/article/details/90209307

——2019/12/2
white