[ltp] Dual monitor with Intel GM965

U Kuehn linux-thinkpad@linux-thinkpad.org
Tue, 21 Jul 2009 07:23:42 +0200


Ismael Olea wrote:
> Hi all:
> 
> I've got an x61s and I'm planning to buy a LCD screen for sharing it with
> this laptop and another machine. I'm intrigued about what resolutions the
> 965 chipset can manage. I've been googling but still I'm not sure.
> 
> This is my xrandr output:
> 
> [olea@lisergia ~]$ xrandr -q
> Screen 0: minimum 320 x 200, current 1024 x 768, maximum 1024 x 1024
> VGA disconnected (normal left inverted right x axis y axis)
> LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 246mm
> x 185mm
>    1024x768       50.0*+   60.0     40.0
>    800x600        60.3     56.2
>    640x480        59.9
> 
> Any experience with dual monitors with x61s? Could I have any problem for
> using a monitor with, ie, a 1680 x 1050 resolution as the Samsung
> Syncmasters has?
> 

You should make sure that you give it the maximum screen resolution you
want to use in the form of a "virtual" statement in the xorg.conf config
file, e.g.

Section "Screen"
        Identifier      "Internal Screen"
        Device          "Intel 965"
        Monitor         "IBM ThinkPad LCD"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                Modes           "1024x768" "1280x1024"
                Virtual         1280 1024
        EndSubSection
EndSection


This works for me, but maybe it is also superfluous with the newer
servers which do more and more auto-configuration.

Hope this helps
Ulrich