Virtualbox

Konfiguracja pozwala na ustawienie dowolnej rozdzielczości dla systemu gościa bez instalownia dodatków Virtualbox. Wykorzystywany jest jedynie sterownik vesa dla Xorg.

Definiujemy nasz vesa-mode podając nazwę maszyny wirtualnej i rozdzielczość.


VBoxManage.exe setextradata vmUbuntu CustomVideoMode1 1680x1050x16

Uruchamiamy wirtualkę i generujemy xorg.conf.


Xorg -configure

Edytujemy sekcje "Monitor", "Device" i "Screen".


## IIYAMA E2002WSV
Section "Monitor"
  Identifier   "Monitor0"
  VendorName   "Monitor Vendor"
  ModelName    "Monitor Model"
 
  HorizSync     24.0 - 80.0
  Vertrefresh   55.0 - 75.0
EndSection


Section "Device"
  Identifier    "Device0"
  Driver        "vesa"
EndSection


Section "Screen"
    Identifier             "Screen0"
    Device                 "Device0"
    Monitor                "Monitor0"
    DefaultDepth            16 #Choose the depth (16||24)
     
    SubSection             "Display"
        Depth               16
        Modes              "1680x1050" #Choose the resolution
    EndSubSection
EndSection