Есть необходимость настроить X сервер следующим образом:
к компу подключены 2 монитора (к одной видео карте: NVidia GeForce 6200)! На одном из них стоит сенсорный экран: General Touth. Проблем с настройкой 2-ух мониторов не было, но возникли с настройкой сенсорного экрана. При калибровке он думает что 2-ой монитор это продолжение первого, ну и собственно колерует должным образом. Существует ли возможность настроить X таким образом что бы они были подключены к одной видео карте, но отображали разные дисплеи. Если да, то каким образом. Экземпляр своего xorg.conf прикладываю. Если не трудно то не могли бы вы указать какие места конфигурационного файла следует поправить.
Код: Выделить всё
# File generated by XFdrake (rev 57713)
Section "Files"
FontPath "unix/:-1"
FontPath "/usr/share/fonts/misc:unscaled"
EndSection
Section "Module"
Load "dbe" # Double-Buffering Extension
Load "v4l" # Video for Linux
Load "extmod"
Load "type1"
Load "freetype"
Load "/usr/lib/xorg/modules/extensions/nvidia/libglx.so"
Load "glx" # 3D layer
EndSection
Section "ServerFlags"
Option "allowmouseopenfail"
EndSection
#########################################
# Input Devices #
#########################################
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/mouse"
EndSection
Section "InputDevice"
Identifier "touchscreen_usb"
Driver "gentouchusb"
Option "Device" "/dev/input/by-id/usb-General_Touch_Co._Ltd._GeneralTouch_USB_Touchscreen-event-joystick"
EndSection
Section "InputDevice"
Identifier "Keyboard1"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us,ru(winkeys)"
Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll,compose:rwin"
EndSection
########################################
# Monitors #
########################################
Section "Monitor"
# Monitor preferred modeline (60.0 Hz vsync, 64.0 kHz hsync, ratio 5/4)
Identifier "monitor1"
VendorName "Plug'n Play"
ModelName "Acer AL1716"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 83.0
VertRefresh 55.0 - 75.0
ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
ModeLine "768x576" 50.0 768 832 846 1000 576 590 595 630
ModeLine "768x576" 63.1 768 800 960 1024 576 578 590 616
EndSection
Section "Monitor"
# Monitor preferred modeline (60.0 Hz vsync, 64.0 kHz hsync, ratio 5/4)
Identifier "monitor2"
VendorName "Plug'n Play"
ModelName "Other21"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 83.0
VertRefresh 55.0 - 75.0
ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
ModeLine "768x576" 50.0 768 832 846 1000 576 590 595 630
ModeLine "768x576" 63.1 768 800 960 1024 576 578 590 616
EndSection
########################################
# Devices #
########################################
Section "Device"
Identifier "device1"
VendorName "nVidia Corp."
BoardName "NVIDIA GeForce 6800 (generic)"
Driver "nvidia"
BusID "PCI:1:0:0"
Option "DPMS"
# Option "TwinViewOrientation" "RightOf"
Option "TwinView" "1"
EndSection
#######################################
# Screens #
#######################################
Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "1152x864" "1024x768"
EndSubsection
EndSection
Section "Screen"
Identifier "screen2"
Device "device1"
Monitor "monitor2"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "1152x864" "1024x768"
EndSubsection
EndSection
######################################
# ServerLayout #
######################################
Section "ServerLayout"
Identifier "layout1"
Screen 0 "screen2" 0 0
InputDevice "touchscreen_usb" "SendCoreEvents"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
Screen 1 "screen1" Below "screen2"