Fixes RHEL 8.0 Server with GUI over Hyper-V
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When installing RHEL 8.0 on Hyper-V in Windows 10, | |
if you choose the option "Server with GUI" and proceed installing the OS | |
the VM will eventually boot into a blank screen as described at | |
https://access.redhat.com/solutions/4206491 | |
The acompaining script installs the missing package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir /repo | |
mount /dev/sr0 /repo | |
cat > /etc/yum.repos.d/AppStream.repo << EOL | |
[AppStream] | |
name=AppStream | |
baseurl=file:///repo/AppStream | |
gpgcheck=0 | |
EOL | |
yum -y groupinstall base-x | |
reboot now |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment