Created
December 12, 2014 22:03
-
-
Save jackpinto/3a0a1c4a8ba67ed3db61 to your computer and use it in GitHub Desktop.
Running full screen for ubuntu in Hyper-V 2012
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
Edit the grub configuration file, for example: | |
sudo vi /etc/default/grub | |
Find the line starting with GRUB_CMDLINE_LINUX_DEFAULT, and add "video=hyperv_fb:1680x1050" (or your custom resolution) in between the quotes. For example: | |
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1680x1050" | |
Save and exit | |
Run | |
sudo update-grub | |
Restart your computer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment