помогите настроить Xinerama на intel

Имеется ноут с видюхой intel 945GM, и внешний моник Samsung 710N, xorg-server-1.6.2, дрова xf86-video-intel-2.7.1. Находил в инете какие-то разные маны, которые по большей части совпадают, но так ничего и не добился. xorg.conf довел до вот такого вида:

Section "Module"
   Load   "glx"
   Load   "extmod"
   Load   "record"
   Load   "dbe"
   Load   "dri"
   Load   "dri2"
   Load       "synaptics"
EndSection

Section "ServerFlags"
  Option  "AIGLX" "True"
EndSection

Section "Files"
    FontPath   "/usr/share/fonts/misc/"
#    FontPath   "/usr/share/fonts/TTF/"
#    FontPath   "/usr/share/fonts/OTF"
    FontPath   "/usr/share/fonts/Type1/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/75dpi/"
#    FontPath   "/usr/lib/X11/fonts/local/"
#    FontPath   "/usr/lib/X11/fonts/misc/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/Type1/"
#    FontPath   "/usr/lib/X11/fonts/TrueType/"
#    FontPath   "/usr/lib/X11/fonts/freefont/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/"
#    FontPath   "/usr/lib/X11/fonts/100dpi/"
#    ModulePath "/usr/lib/modules"
EndSection

Section "InputDevice"
    Identifier	"Keyboard1"
    Driver	"kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules"	"xorg"
    Option "XkbModel"	"inspiron"
    Option "XkbLayout"	"us,ru(winkeys)"
    Option "XkbOptions"	"grp:alt_shift_toggle,grp_led:scroll,compose:ralt"
EndSection

Section "InputDevice"
    Identifier	"Mouse1"
    Driver	"mouse"
    Option "Protocol"    "Auto"	# Auto detect
    Option "Device"      "/dev/input/mice"
    Option "ZAxisMapping"   "4 5 6 7"
EndSection

Section "InputDevice"
    Identifier "Touchpad0"
    Driver "synaptics"
    Option "Protocol" "auto-dev"
    Option "Device" "/dev/input/mouse1"
    Option "ZAxisMapping" "4 5 6 7"

    Option "LeftEdge" "1000"
    Option "RightEdge" "5800"
    Option "TopEdge" "680"
    Option "BottomEdge" "5850"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "FastTaps" "true"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "SingleTapTimeout" "200"
    Option "MaxDoubleTapTime" "300"
    Option "VertScrollDelta" "200"
    Option "HorizScrollDelta" "200"
    Option "MinSpeed" "0.3"
    Option "MaxSpeed" "1.0"
    Option "AccelFactor" "0.030"
    Option "TapButton1" "1"
    Option "TapButton2" "3"
    Option "TapButton3" "2"
    Option "LockedDrags" "1"
    Option "LockedDragTimeout" "700"

    Option "SHMConfig" "true"
EndSection

Section "Monitor"
    Identifier  "Internal"
    HorizSync   31.5
    VertRefresh 50-70
    Option "ReducedBlanking" "true"
    Modeline "1440x900_60.00"  106.47  1440 1520 1672 1904  900 901 904 932  -HSync +Vsync
    Modeline "1024x768_60.00"  64.11  1024 1080 1184 1344  768 769 772 795  -HSync +Vsync
    Modeline "800x600_60.00"  38.22  800 832 912 1024  600 601 604 622  -HSync +Vsync
    Modeline "640x480_60.00"  23.86  640 656 720 800  480 481 484 497  -HSync +Vsync
    Option   "DPMS" "true"
EndSection

Section "Monitor"
    Identifier    "Samsung"
    #HorizSync     31.5
    #VertRefresh   50-70
    Modeline "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
    Modeline "1024x768_60.00"  64.11  1024 1080 1184 1344  768 769 772 795  -HSync +Vsync
    Modeline "800x600_60.00"  38.22  800 832 912 1024  600 601 604 622  -HSync +Vsync
    Modeline "640x480_60.00"  23.86  640 656 720 800  480 481 484 497  -HSync +Vsync
    Option  "DPMS"  "True"
EndSection

Section "Device"
   Option     "DRI"           "True"
   Option     "DRI2"          "True"
   Option     "AccelMethod"   "UXA"
   Option     "Tiling"        "False"
   Option     "NoAccel"       "False"

   Identifier "Card0"
   Driver     "intel"
   VendorName "Intel Corporation"
   BoardName  "Intel 945GM"
   BusID      "PCI:0:2:0"
   Screen     0
   Option     "DDCMode"      "True"
EndSection

Section "Device"
   Option     "DRI"           "True"
   Option     "DRI2"          "True"
   Option     "AccelMethod"   "UXA"
   Option     "Tiling"        "False"
   Option     "NoAccel"       "False"

   Identifier "Card1"
   Driver     "intel"
   VendorName "Intel Corporation"
   BoardName  "Intel 945GM"
   BusID      "PCI:0:2:0"
   Screen     1
   Option     "DDCMode"      "True"
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Internal"
   SubSection "Display"
        Viewport  0 0
        Depth     24
   	Modes      "1440x900" "1024x768" "800x600" "640x480"
   EndSubSection
EndSection

Section "Screen"
    Identifier  "Screen1"
    Device      "Card1"
    Monitor     "Samsung"
    SubSection "Display"
    	Viewport 0 0
	Depth    24
	Modes	 "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen      0 "Screen0"
    Screen      1 "Screen1" LeftOf "Screen0"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Touchpad0" "AlwaysCore"
#    Option 	"Xinerama"  "True"
#    Option	"Clone"	    "Off"
EndSection

Section "ServerFlags"
    #Option "Xinerama" "True"
EndSection

Section "Extensions"
    Option     "Composite"  "Enable"
    Option     "RENDER"     "Enable"
EndSection

Section "DRI"
    Mode	0666
EndSection

Если раскомментировать любую из строк #Option "Xinerama" "True", то иксы не грузятся, вот лог, а в текущем виде, на втором монике клон левого верхнего угла дисплея ноута размером 720х400 или 640х480.
DE - xfce, и в некоторых настройках показывает наличие двух моников, но в настройках дисплея показывает только один дисплей с выбором вышеперечисленных разрешений на выбор, то есть позволяет настраивать внешний моник.

man xrandr?

man xrandr?

Кто-нибудь решил подобное

Кто-нибудь решил подобное поведение X-ов ?

Точно такие же симптомы на ноутбуке thinkpad R61.
x11-base/xorg-server-1.6.5-r1
x11-drivers/xf86-video-intel-2.9.1

Настройки просмотра комментариев

Выберите нужный метод показа комментариев и нажмите "Сохранить установки".