wang, shida wrote:
> Hello,
> 
>          I have a debian sid guest in vbox 1.62 on windows xp. My 
> xorg.conf is as attached. While as it turns out, my xorg can only 
> display in 800x600, no matter what mode I set.
> 

You may want to try simplifying your xorg.conf file. There is no need 
for the modelines etc for the virtual monitor.

Mine looks like this:

Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "kbd"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "pc105"
        Option          "XkbLayout"     "us"
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
     Driver      "vboxmouse"
     Option      "CorePointer"
        Option          "Device"        "/dev/input/mice"
        Option          "Protocol"      "ImPS/2"
        Option          "Buttons"       "5"
        Option          "ZAxisMapping"  "4 5"
EndSection

Section "Device"
        Identifier      "Configured Video Device"
     Driver      "vboxvideo"
EndSection

Section "Monitor"
        Identifier      "Configured Monitor"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Monitor         "Configured Monitor"
        Device          "Configured Video Device"
        DefaultDepth    24
        SubSection      "Display"
                Depth   24
                Modes   "1400x900" "1280x800" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
EndSection

And I can select any of the mode in the guest at runtime.

HTH
Dennis Cote


_______________________________________________
vbox-users mailing list
[email protected]
http://vbox.innotek.de/mailman/listinfo/vbox-users

Reply via email to