Skip to content

Instantly share code, notes, and snippets.

@alfredmyers
Last active August 29, 2019 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfredmyers/9ffb4c26229172aa1a4c5840b9348f6b to your computer and use it in GitHub Desktop.
Save alfredmyers/9ffb4c26229172aa1a4c5840b9348f6b to your computer and use it in GitHub Desktop.
Fixes RHEL 8.0 Server with GUI over Hyper-V
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.
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