3

I installed Raspberry Pi Desktop on a VM on Windows, and am intrigued. However, I cannot find where/how to enlarge the display ("screen") resolution. Is is very small, and makes it difficult to do anything.

Also, the VM guest mouse is not always completely synchronized with my mouse, but maybe that is what I get for using a virtual machine. Can anyone give some beginner tips/resources?

Ghanima
  • 15,958
  • 17
  • 65
  • 125
derz00
  • 31
  • 1
  • 3

2 Answers2

3

In VirtualBox, you need to install the Guest Additions before it will recognized any other resolutions.

  1. In VirtualBox, choose Insert Guest Additions CD image... from the Devices menu.

  2. Next, you'll need to install the Guest Additions in a Terminal window.

    sudo sh /media/cdrom/VBoxLinuxGuestAdditions.run
    
  3. Reboot.

  4. After rebooting, open a new Terminal and use the following command.

    lxrandr
    
  5. Choose your preferred resolution and enjoy!.

Nilpo
  • 141
  • 5
1

Try this:

$ sudo leafpad /etc/default/grub

Change the line

''#GRUB_GFXMODE=800x600''

to for example:

GRUB_GFXMODE=1920x1080

Save the file

$ sudo update-grub

$ sudo reboot

This worked for me.

Aurora0001
  • 6,357
  • 3
  • 25
  • 39
CodeMaster
  • 11
  • 1