Last active
September 10, 2019 14:47
-
-
Save perlguy99/c97c546661f48bc78f04fa6c84923db5 to your computer and use it in GitHub Desktop.
Change Resolution of RHEL on a Windows Hyper-V
This file contains hidden or 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
# Use "grubby" to update all current and future kernels passing the video argument | |
# for the Microsoft Hyper-V Synthetic Video Frame Buffer driver | |
# Tried 2560x1440 but got an "out of range" error upon reboot. | |
grubby --update-kernel=ALL --args="video=hyperv_fb:1920x1080" | |
# A reboot is required to apply the changes: | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment