# Hyper-V with Ubuntu guest change resolution to FHD(1080p) * Author : Pin-Hao,Chen * Reference : [website](https://www.30abysses.com/TWY/2017/05/06/ubuntu-hyper-v-screen-resolution.html) ## install dependacy package from deb ``` sudo apt install -y linux-image-extra-virtual ``` ## Optional if ubuntu is above 22.04 ``` sudo add-apt-repository ppa:danielrichter2007/grub-customizer ``` ## install grub GUI custom tool ``` sudo apt install -y grub-customizer ``` ## open grub customizer with root ``` sudo grub-customizer ``` ## change /General settings/kernel parameters ``` quiet splash video=hyperv_fb:1920x1080 ``` ![](https://i.imgur.com/WLki99W.png) ![](https://i.imgur.com/VAIR7gL.png) ## reboot the VM the resolutino should be apply then ``` sudo reboot ```