hi. can anybody tell me if this is possible and, if so, how it needs to be configured.
i have an nvidia geforce gt 430 which has a vga, dvi, & hdmi output. i'd like to run x on the hdmi output, being controlled by a infrared remote control, and at the same time use the console (tty) via the dvi output being controlled by a keyboard/mouse. at the moment i can only have one or the other and the keyboard/mouse is controlling whichever output is active.
my xorg.conf is as follows :
Code:
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
Option "Xinerama" "0"
EndSection
Section "InputDevice"
# generated from data in "/etc/sysconfig/keyboard"
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbLayout" "gb"
Option "XkbModel" "pc105"
EndSection
Section "Monitor"
# HorizSync source: edid, VertRefresh source: edid
Identifier "Monitor0"
VendorName "Unknown"
ModelName "CYP HDMI-DA"
HorizSync 13.0 - 46.0
VertRefresh 23.0 - 61.0
Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce GT 430"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
Option "TwinView" "0"
Option "metamodes" "DFP-1: 1920x1080 +0+0"
SubSection "Display"
Depth 24
EndSubSection
EndSection
these are the xinput lines from Xorg.0.log :
Code:
[ 2946.901] (II) XINPUT: Adding extended input device "Media Center Ed. eHome Infrared Remote Transceiver (0471:0815)" (type: KEYBOARD, id 9)
[ 2946.903] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:1024" (type: MOUSE, id 10)
[ 2946.903] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:2011" (type: KEYBOARD, id 11)
[ 2946.904] (II) XINPUT: Adding extended input device "MCE IR Keyboard/Mouse (mceusb)" (type: KEYBOARD, id 12)
hope the request makes sense. any advice is much appreciated.