收集几种修改hyper-v中linux分辨率调整的方法

ubuntu

sudo gedit /etc/default/grub
找到:
GRUB_CMDLINE_LINUX_DEFAULT, and add video=hyperv_fb:[the resolution you want]
修改为:
GRUB_CMDLINE_LINUX_DEFAULT=“quiet splash video=hyperv_fb:1900x980”
sudo update-grub
重启虚拟机

Centos7

sudo gedit /etc/default/grub
倒数第二行增加 video=hyperv_fb:800x600
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
如果是efi引导,还要执行下面的命令
sudo grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg
重启虚拟机

Centos7可用

grubby --update-kernel=ALL --args=“video=hyperv_fb:800x600”

Logo

更多推荐