How to enable the full screen mode for Kali Linux on Hyper-V virtual machine

8,667

Solution 1

In /etc/default/grub change GRUB_CMDLINE_LINUX_DEFAULT=”quiet” to GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash video=hyperv_fb:your_resolution″ for me it was GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash video=hyperv_fb:1920×1080″. Save file then run sudo update-grub and restart.

Solution 2

If this doesn't work on Hyper-v (You will see this message briefly on during boot process "hyperv_fb screen option is invalid"

Run the following command in Powershell as administrator on Windows host:

*set-vmvideo -vmname <NameOfVM> -horizontalresolution:2560  -verticalresolution:1440 -resolutiontype single*
Share:
8,667

Related videos on Youtube

Atanas Bobev
Author by

Atanas Bobev

Updated on September 18, 2022

Comments

  • Atanas Bobev
    Atanas Bobev almost 2 years

    I have successfully installed Kali Linux on Hyper-V. The problem is that the OS doesn't take the whole screen. It takes only part of it. How to make Kali Linux run on full screen (physical)?

    enter image description here

    • Rui F Ribeiro
      Rui F Ribeiro over 5 years
      Install Linux Integration Services
  • Amel
    Amel over 2 years
    This is THE answer! Changing /etc/default/grub doesn't help on Kali-2021.3, but set-vmvideo -vmname NameOfVM -horizontalresolution:1920 -verticalresolution:1200 -resolutiontype single does