help with xorg.conf

James Strother jstrother9109 at gmail.com
Wed Dec 14 14:08:30 PST 2011


Hello,

I've been trying to assemble a somewhat unusual Xorg configuration,
and have met with very limited success. I would like to have two
separate monitors connected to the same machine, each running from a
separate graphics card and a separate instance of Xorg. The first
monitor would control the mouse and keyboard, while the second
requires no input devices. The first monitor would be used for user
input, while the second monitor would only display results. The reason
for running everything on separate resources is to reduce the number
of dropped frames on the second monitor to an absolute minimum. When I
run them from the same Xorg instance, activity on the first monitor
results in spurious dropped frames on the second.  Not very many, mind
you, but a frame here and a frame there is too many for my
application.

I have been trying to understand how to appropriately configure Xorg
for this situation, but have had extremely little success.  I have had
two main problems.  Any help that you could provide would be VERY much
appreciated.


Problem 1: Unable to access config file at non-default location as non-root
-------------------------------------------------------------------------------------------------------------
This seems like an extremely simple problem, but I'm stumped.  I have
written an alt.conf file, and place it into /etc/X11/xorg.conf.d.  The
file exists, is owned by root, and has permissions of 644.  It shows
up on ls just fine:

$ ls /etc/X11/xorg.conf.d
alt.conf

But I can't actually get Xorg to find or use that file:

$ Xorg :1 -config alt.conf

X.Org X Server 1.10.4
Release Date: 2011-08-19
X Protocol Version 11, Revision 0
Build Operating System: x86-002 2.6.18-274.3.1.el5
Current Operating System: Linux hostname.local 2.6.32-220.el6.i686 #1
SMP Wed Nov 9 08:02:18 EST 2011 i686
Kernel command line: ro root=UUID=xx rd_NO_LUKS rd_NO_LVM
LANG=en_US.UTF-8 rd_NO_MD quiet SYSFONT=latarcyrheb-sun16 rhgb
KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rdblacklist=nouveau
Build Date: 20 October 2011  12:03:36PM
Build ID: xorg-x11-server 1.10.4-6.el6
Current version of pixman: 0.18.4
    Before reporting problems, check https://www.redhat.com/apps/support/
    to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.1.log", Time: Wed Dec 14 15:37:15 2011
(EE) Unable to locate/open config file: "alt.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
expected keysym, got XF86TouchpadOn: line 120 of inet
expected keysym, got XF86TouchpadOff: line 121 of inet
expected keysym, got XF86TouchpadOn: line 120 of inet
expected keysym, got XF86TouchpadOff: line 121 of inet
(EE) American Megatrends Inc. Virtual Keyboard and Mouse: failed to
initialize for relative axes.

The file seems to be okay, and if I run Xorg as root then it comes up fine:

# Xorg :1 -config /etc/X11/xorg.conf.d/alt.conf

X.Org X Server 1.10.4
Release Date: 2011-08-19
X Protocol Version 11, Revision 0
Build Operating System: x86-002 2.6.18-274.3.1.el5
Current Operating System: Linux hostname.local 2.6.32-220.el6.i686 #1
SMP Wed Nov 9 08:02:18 EST 2011 i686
Kernel command line: ro root=UUID=xx rd_NO_LUKS rd_NO_LVM
LANG=en_US.UTF-8 rd_NO_MD quiet SYSFONT=latarcyrheb-sun16 rhgb
KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rdblacklist=nouveau
Build Date: 20 October 2011  12:03:36PM
Build ID: xorg-x11-server 1.10.4-6.el6
Current version of pixman: 0.18.4
    Before reporting problems, check https://www.redhat.com/apps/support/
    to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.1.log", Time: Wed Dec 14 15:39:58 2011
(++) Using config file: "/etc/X11/xorg.conf.d/alt.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
expected keysym, got XF86TouchpadOn: line 120 of inet
expected keysym, got XF86TouchpadOff: line 121 of inet
expected keysym, got XF86TouchpadOn: line 120 of inet
expected keysym, got XF86TouchpadOff: line 121 of inet
(EE) American Megatrends Inc. Virtual Keyboard and Mouse: failed to
initialize for relative axes.

Again, I'm sure that the solution is simple, and that I will feel very
silly when I figure out the problem, but how exactly is this supposed
to work?


Problem 2: Xorg ignores BusID field and loads all connected graphics cards
---------------------------------------------------------------------------------------------------------------

I am using the following xorg.conf file

-- begin xorg.conf --

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
    FontPath        "/usr/share/fonts/default/Type1"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mice"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from data in "/etc/sysconfig/keyboard"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbLayout" "us"
    Option         "XkbModel" "pc105"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    BusID          "PCI:12:0:0"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

-- end xorg.conf --



I expected this to connect to the graphics card at PCI:12:0:0 in order
to create a one monitor screen.  However, Xorg actually connects to
both cards and then only displays on the graphics card at PCI:8:0:0.
I have tried setting AutoAddDevices/AutoEnableDevices to false in
ServerFlags without success.  I have also tried SingleCard to false in
ServerLayout, again without success.  In both instances, Xorg loads
but connects to both graphics cards.  Here is the log file for the
above xorg.conf file:


-- begin Xorg.0.log --
[    25.164] X Protocol Version 11, Revision 0
[    25.164] Build Operating System: x86-002 2.6.18-274.3.1.el5
[    25.164] Current Operating System: Linux hostname.local
2.6.32-220.el6.i686 #1 SMP Wed Nov 9 08:02:18 EST 2011 i686
[    25.164] Kernel command line: ro root=UUID=xx rd_NO_LUKS rd_NO_LVM
LANG=en_US.UTF-8 rd_NO_MD quiet SYSFONT=latarcyrheb-sun16 rhgb
KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rdblacklist=nouveau
[    25.164] Build Date: 20 October 2011  12:03:36PM
[    25.164] Build ID: xorg-x11-server 1.10.4-6.el6
[    25.180] Current version of pixman: 0.18.4
[    25.180] 	Before reporting problems, check
https://www.redhat.com/apps/support/
	to make sure that you have the latest version.
[    25.180] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    25.180] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Dec 14
16:09:13 2011
[    25.283] (==) Using config file: "/etc/X11/xorg.conf"
[    25.283] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    25.332] (==) ServerLayout "Layout0"
[    25.332] (**) |-->Screen "Screen0" (0)
[    25.332] (**) |   |-->Monitor "Monitor0"
[    25.400] (**) |   |-->Device "Device0"
[    25.400] (==) Automatically adding devices
[    25.401] (==) Automatically enabling devices
[    25.485] (**) FontPath set to:
	/usr/share/fonts/default/Type1,
	catalogue:/etc/X11/fontpath.d,
	built-ins
[    25.485] (==) ModulePath set to "/usr/lib/xorg/modules"
[    25.486] (II) The server relies on HAL to provide the list of input devices.
	If no devices become available, reconfigure HAL or disable AutoAddDevices.
[    25.486] (II) Loader magic: 0x822c3a0
[    25.486] (II) Module ABI versions:
[    25.486] 	X.Org ANSI C Emulation: 0.4
[    25.486] 	X.Org Video Driver: 10.0
[    25.486] 	X.Org XInput driver : 12.2
[    25.486] 	X.Org Server Extension : 5.0
[    25.487] (--) PCI: (0:1:1:0) 1a03:2000:1a03:2000 rev 16, Mem @
0xf5000000/8388608, 0xf4fe0000/131072, I/O @ 0x00009000/128, BIOS @
0x????????/65536
[    25.487] (--) PCI: (0:8:0:0) 10de:06c0:10de:075f rev 163, Mem @
0xf6000000/33554432, 0xc8000000/134217728, 0xc4000000/67108864, I/O @
0x0000dc00/128, BIOS @ 0x????????/524288
[    25.488] (--) PCI:*(0:12:0:0) 10de:0de1:1462:8093 rev 161, Mem @
0xfa000000/16777216, 0xd8000000/134217728, 0xd6000000/33554432, I/O @
0x0000ec00/128, BIOS @ 0x????????/524288
[    25.488] (II) LoadModule: "extmod"
[    25.564] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    25.574] (II) Module extmod: vendor="X.Org Foundation"
[    25.574] 	compiled for 1.10.4, module version = 1.0.0
[    25.574] 	Module class: X.Org Server Extension
[    25.574] 	ABI class: X.Org Server Extension, version 5.0
[    25.574] (II) Loading extension SELinux
[    25.574] (II) Loading extension MIT-SCREEN-SAVER
[    25.574] (II) Loading extension XFree86-VidModeExtension
[    25.574] (II) Loading extension XFree86-DGA
[    25.574] (II) Loading extension DPMS
[    25.574] (II) Loading extension XVideo
[    25.574] (II) Loading extension XVideo-MotionCompensation
[    25.574] (II) Loading extension X-Resource
[    25.574] (II) LoadModule: "dbe"
[    25.574] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    25.575] (II) Module dbe: vendor="X.Org Foundation"
[    25.575] 	compiled for 1.10.4, module version = 1.0.0
[    25.575] 	Module class: X.Org Server Extension
[    25.575] 	ABI class: X.Org Server Extension, version 5.0
[    25.575] (II) Loading extension DOUBLE-BUFFER
[    25.575] (II) LoadModule: "glx"
[    25.575] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    26.791] (II) Module glx: vendor="NVIDIA Corporation"
[    26.791] 	compiled for 4.0.2, module version = 1.0.0
[    26.791] 	Module class: X.Org Server Extension
[    26.791] (II) NVIDIA GLX Module  290.10  Wed Nov 16 19:49:02 PST 2011
[    26.791] (II) Loading extension GLX
[    26.791] (II) LoadModule: "record"
[    26.791] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    26.802] (II) Module record: vendor="X.Org Foundation"
[    26.802] 	compiled for 1.10.4, module version = 1.13.0
[    26.802] 	Module class: X.Org Server Extension
[    26.802] 	ABI class: X.Org Server Extension, version 5.0
[    26.802] (II) Loading extension RECORD
[    26.802] (II) LoadModule: "dri"
[    26.802] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    26.821] (II) Module dri: vendor="X.Org Foundation"
[    26.821] 	compiled for 1.10.4, module version = 1.0.0
[    26.821] 	ABI class: X.Org Server Extension, version 5.0
[    26.821] (II) Loading extension XFree86-DRI
[    26.821] (II) LoadModule: "dri2"
[    26.821] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    26.821] (II) Module dri2: vendor="X.Org Foundation"
[    26.821] 	compiled for 1.10.4, module version = 1.2.0
[    26.821] 	ABI class: X.Org Server Extension, version 5.0
[    26.821] (II) Loading extension DRI2
[    26.821] (II) LoadModule: "nvidia"
[    26.851] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    26.900] (II) Module nvidia: vendor="NVIDIA Corporation"
[    26.900] 	compiled for 4.0.2, module version = 1.0.0
[    26.900] 	Module class: X.Org Video Driver
[    26.929] (II) NVIDIA dlloader X Driver  290.10  Wed Nov 16 19:29:07 PST 2011
[    26.932] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    26.935] (++) using VT number 1

[    26.949] (II) Loading sub module "fb"
[    26.949] (II) LoadModule: "fb"
[    26.949] (II) Loading /usr/lib/xorg/modules/libfb.so
[    26.950] (II) Module fb: vendor="X.Org Foundation"
[    26.950] 	compiled for 1.10.4, module version = 1.0.0
[    26.950] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    26.950] (II) Loading sub module "wfb"
[    26.950] (II) LoadModule: "wfb"
[    26.950] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    26.963] (II) Module wfb: vendor="X.Org Foundation"
[    26.963] 	compiled for 1.10.4, module version = 1.0.0
[    26.963] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    26.963] (II) Loading sub module "ramdac"
[    26.963] (II) LoadModule: "ramdac"
[    26.963] (II) Module "ramdac" already built-in
[    26.971] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    26.971] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    26.971] (II) Loading /usr/lib/xorg/modules/libfb.so
[    26.978] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[    26.978] (==) NVIDIA(0): RGB weight 888
[    26.978] (==) NVIDIA(0): Default visual is TrueColor
[    26.978] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    26.978] (**) NVIDIA(0): Enabling 2D acceleration
[    28.956] (II) NVIDIA(GPU-0): Display (DELL 2007FP (DFP-2)) does
not support NVIDIA 3D
[    28.956] (II) NVIDIA(GPU-0):     Vision stereo.
[    28.959] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 480 (GF100) at
PCI:8:0:0 (GPU-0)
[    28.959] (--) NVIDIA(0): Memory: 1572864 kBytes
[    28.959] (--) NVIDIA(0): VideoBIOS: 70.00.21.00.02
[    28.959] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    28.959] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
[    28.959] (--) NVIDIA(0): Connected display device(s) on GeForce
GTX 480 at PCI:8:0:0
[    28.959] (--) NVIDIA(0):     DELL 2007FP (DFP-2)
[    28.959] (--) NVIDIA(0): DELL 2007FP (DFP-2): 330.0 MHz maximum pixel clock
[    28.959] (--) NVIDIA(0): DELL 2007FP (DFP-2): Internal Dual Link TMDS
[    29.131] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from
the EDID has been
[    29.131] (**) NVIDIA(0):     enabled on all display devices.
[    29.165] (II) NVIDIA(0): Assigned Display Device: DFP-2
[    29.165] (==) NVIDIA(0):
[    29.165] (==) NVIDIA(0): No modes were requested; the default mode
"nvidia-auto-select"
[    29.165] (==) NVIDIA(0):     will be used as the requested mode.
[    29.165] (==) NVIDIA(0):
[    29.165] (II) NVIDIA(0): Validated modes:
[    29.165] (II) NVIDIA(0):     "nvidia-auto-select"
[    29.165] (II) NVIDIA(0): Virtual screen size determined to be 1600 x 1200
[    29.167] (--) NVIDIA(0): DPI set to (99, 98); computed from
"UseEdidDpi" X config
[    29.167] (--) NVIDIA(0):     option
[    29.167] (--) Depth 24 pixmap format is 32 bpp
[    29.916] (II) NVIDIA(GPU-1): Display (Samsung SMEX2220 (DFP-0))
does not support NVIDIA 3D
[    29.916] (II) NVIDIA(GPU-1):     Vision stereo.
[    29.918] (II) NVIDIA(GPU-1): NVIDIA GPU GeForce GT 430 (GF108) at
PCI:12:0:0 (GPU-1)
[    29.918] (--) NVIDIA(GPU-1): Memory: 2097152 kBytes
[    29.918] (--) NVIDIA(GPU-1): VideoBIOS: 70.08.29.00.00
[    29.918] (II) NVIDIA(GPU-1): Detected PCI Express Link width: 8X
[    29.918] (--) NVIDIA(GPU-1): Interlaced video modes are supported
on this GPU
[    29.918] (--) NVIDIA(GPU-1): Connected display device(s) on
GeForce GT 430 at PCI:12:0:0
[    29.918] (--) NVIDIA(GPU-1):     Samsung SMEX2220 (DFP-0)
[    29.918] (--) NVIDIA(GPU-1): Samsung SMEX2220 (DFP-0): 330.0 MHz
maximum pixel clock
[    29.918] (--) NVIDIA(GPU-1): Samsung SMEX2220 (DFP-0): Internal
Dual Link TMDS
[    29.918] (II) NVIDIA: Using 1024.00 MB of virtual memory for indirect memory
[    29.919] (II) NVIDIA:     access.
[    29.931] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
[    29.993] (II) Loading extension NV-GLX
[    30.073] (==) NVIDIA(0): Disabling shared memory pixmaps
[    30.073] (==) NVIDIA(0): Backing store disabled
[    30.073] (==) NVIDIA(0): Silken mouse enabled
[    30.081] (**) NVIDIA(0): DPMS enabled
[    30.082] (II) Loading extension NV-CONTROL
[    30.082] (WW) NVIDIA(0): Option "TwinViewXineramaInfoOrder"
requested "CRT", but no
[    30.082] (WW) NVIDIA(0):     such display device could be found,
or all display devices
[    30.082] (WW) NVIDIA(0):     by that name are currently unavailable.
[    30.082] (WW) NVIDIA(0): Option "TwinViewXineramaInfoOrder"
requested "TV", but no such
[    30.082] (WW) NVIDIA(0):     display device could be found, or all
display devices by
[    30.082] (WW) NVIDIA(0):     that name are currently unavailable.
[    30.082] (II) Loading extension XINERAMA
[    30.082] (II) Loading sub module "dri2"
[    30.082] (II) LoadModule: "dri2"
[    30.082] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    30.082] (II) Module dri2: vendor="X.Org Foundation"
[    30.082] 	compiled for 1.10.4, module version = 1.2.0
[    30.082] 	ABI class: X.Org Server Extension, version 5.0
[    30.082] (II) NVIDIA(0): [DRI2] Setup complete
[    30.082] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    30.082] (==) RandR enabled
[    30.082] (II) Initializing built-in extension Generic Event Extension
[    30.082] (II) Initializing built-in extension SHAPE
[    30.082] (II) Initializing built-in extension MIT-SHM
[    30.082] (II) Initializing built-in extension XInputExtension
[    30.082] (II) Initializing built-in extension XTEST
[    30.082] (II) Initializing built-in extension BIG-REQUESTS
[    30.082] (II) Initializing built-in extension SYNC
[    30.082] (II) Initializing built-in extension XKEYBOARD
[    30.082] (II) Initializing built-in extension XC-MISC
[    30.082] (II) Initializing built-in extension XINERAMA
[    30.082] (II) Initializing built-in extension XFIXES
[    30.082] (II) Initializing built-in extension RENDER
[    30.082] (II) Initializing built-in extension RANDR
[    30.082] (II) Initializing built-in extension COMPOSITE
[    30.082] (II) Initializing built-in extension DAMAGE
[    30.082] (II) SELinux: Disabled on system
[    30.084] (II) Initializing extension GLX
[    30.521] (II) config/hal: Adding input device Logitech USB Keyboard
[    30.521] (II) LoadModule: "evdev"
[    30.521] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.533] (II) Module evdev: vendor="X.Org Foundation"
[    30.533] 	compiled for 1.10.3, module version = 2.6.0
[    30.533] 	Module class: X.Org XInput Driver
[    30.533] 	ABI class: X.Org XInput driver, version 12.2
[    30.533] (II) Using input driver 'evdev' for 'Logitech USB Keyboard'
[    30.533] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.533] (**) Logitech USB Keyboard: always reports core events
[    30.533] (**) Logitech USB Keyboard: Device: "/dev/input/event4"
[    30.538] (--) Logitech USB Keyboard: Found absolute axes
[    30.538] (--) Logitech USB Keyboard: Found keys
[    30.538] (II) Logitech USB Keyboard: Configuring as mouse
[    30.538] (II) Logitech USB Keyboard: Configuring as keyboard
[    30.538] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/usb_device_46d_c31d_noserial_if1_logicaldev_input"
[    30.538] (II) XINPUT: Adding extended input device "Logitech USB
Keyboard" (type: KEYBOARD)
[    30.538] (**) Option "xkb_rules" "evdev"
[    30.538] (**) Option "xkb_model" "pc105+inet"
[    30.538] (**) Option "xkb_layout" "us"
[    30.538] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    30.569] (II) Logitech USB Keyboard: initialized for absolute axes.
[    30.569] (**) Logitech USB Keyboard: (accel) keeping acceleration scheme 1
[    30.569] (**) Logitech USB Keyboard: (accel) acceleration profile 0
[    30.569] (**) Logitech USB Keyboard: (accel) acceleration factor: 2.000
[    30.569] (**) Logitech USB Keyboard: (accel) acceleration threshold: 4
[    30.573] (II) config/hal: Adding input device Logitech USB Keyboard
[    30.573] (II) Using input driver 'evdev' for 'Logitech USB Keyboard'
[    30.573] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.573] (**) Logitech USB Keyboard: always reports core events
[    30.573] (**) Logitech USB Keyboard: Device: "/dev/input/event3"
[    30.582] (--) Logitech USB Keyboard: Found keys
[    30.583] (II) Logitech USB Keyboard: Configuring as keyboard
[    30.583] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/usb_device_46d_c31d_noserial_if0_logicaldev_input"
[    30.583] (II) XINPUT: Adding extended input device "Logitech USB
Keyboard" (type: KEYBOARD)
[    30.583] (**) Option "xkb_rules" "evdev"
[    30.583] (**) Option "xkb_model" "pc105+inet"
[    30.583] (**) Option "xkb_layout" "us"
[    30.583] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    30.590] (II) config/hal: Adding input device American Megatrends
Inc. Virtual Keyboard and Mouse
[    30.590] (II) Using input driver 'evdev' for 'American Megatrends
Inc. Virtual Keyboard and Mouse'
[    30.590] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.590] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
always reports core events
[    30.590] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
Device: "/dev/input/event6"
[    30.596] (--) American Megatrends Inc. Virtual Keyboard and Mouse:
Found keys
[    30.596] (II) American Megatrends Inc. Virtual Keyboard and Mouse:
Configuring as keyboard
[    30.596] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/usb_device_46b_ff10_serial_if0_logicaldev_input"
[    30.596] (II) XINPUT: Adding extended input device "American
Megatrends Inc. Virtual Keyboard and Mouse" (type: KEYBOARD)
[    30.596] (**) Option "xkb_rules" "evdev"
[    30.596] (**) Option "xkb_model" "pc105+inet"
[    30.596] (**) Option "xkb_layout" "us"
[    30.596] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    30.602] (II) config/hal: Adding input device Power Button
[    30.602] (II) Using input driver 'evdev' for 'Power Button'
[    30.602] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.602] (**) Power Button: always reports core events
[    30.602] (**) Power Button: Device: "/dev/input/event0"
[    30.606] (--) Power Button: Found keys
[    30.606] (II) Power Button: Configuring as keyboard
[    30.606] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/computer_logicaldev_input_0"
[    30.606] (II) XINPUT: Adding extended input device "Power Button"
(type: KEYBOARD)
[    30.606] (**) Option "xkb_rules" "evdev"
[    30.606] (**) Option "xkb_model" "pc105+inet"
[    30.606] (**) Option "xkb_layout" "us"
[    30.606] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    30.612] (II) config/hal: Adding input device Power Button
[    30.612] (II) Using input driver 'evdev' for 'Power Button'
[    30.612] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.612] (**) Power Button: always reports core events
[    30.612] (**) Power Button: Device: "/dev/input/event1"
[    30.616] (--) Power Button: Found keys
[    30.616] (II) Power Button: Configuring as keyboard
[    30.616] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/computer_logicaldev_input"
[    30.616] (II) XINPUT: Adding extended input device "Power Button"
(type: KEYBOARD)
[    30.616] (**) Option "xkb_rules" "evdev"
[    30.616] (**) Option "xkb_model" "pc105+inet"
[    30.616] (**) Option "xkb_layout" "us"
[    30.616] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    30.621] (II) config/hal: Adding input device Macintosh mouse
button emulation
[    30.621] (II) Using input driver 'evdev' for 'Macintosh mouse
button emulation'
[    30.621] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.621] (**) Macintosh mouse button emulation: always reports core events
[    30.621] (**) Macintosh mouse button emulation: Device: "/dev/input/event2"
[    30.625] (--) Macintosh mouse button emulation: Found 3 mouse buttons
[    30.625] (--) Macintosh mouse button emulation: Found relative axes
[    30.625] (--) Macintosh mouse button emulation: Found x and y relative axes
[    30.625] (II) Macintosh mouse button emulation: Configuring as mouse
[    30.625] (**) Macintosh mouse button emulation: YAxisMapping:
buttons 4 and 5
[    30.625] (**) Macintosh mouse button emulation:
EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout:
200
[    30.625] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/computer_logicaldev_input_1"
[    30.625] (II) XINPUT: Adding extended input device "Macintosh
mouse button emulation" (type: MOUSE)
[    30.625] (II) Macintosh mouse button emulation: initialized for
relative axes.
[    30.625] (**) Macintosh mouse button emulation: (accel) keeping
acceleration scheme 1
[    30.625] (**) Macintosh mouse button emulation: (accel)
acceleration profile 0
[    30.625] (**) Macintosh mouse button emulation: (accel)
acceleration factor: 2.000
[    30.625] (**) Macintosh mouse button emulation: (accel)
acceleration threshold: 4
[    30.630] (II) config/hal: Adding input device Logitech USB Optical Mouse
[    30.630] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
[    30.630] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.630] (**) Logitech USB Optical Mouse: always reports core events
[    30.630] (**) Logitech USB Optical Mouse: Device: "/dev/input/event5"
[    30.634] (--) Logitech USB Optical Mouse: Found 3 mouse buttons
[    30.634] (--) Logitech USB Optical Mouse: Found scroll wheel(s)
[    30.634] (--) Logitech USB Optical Mouse: Found relative axes
[    30.634] (--) Logitech USB Optical Mouse: Found x and y relative axes
[    30.634] (II) Logitech USB Optical Mouse: Configuring as mouse
[    30.634] (II) Logitech USB Optical Mouse: Adding scrollwheel support
[    30.634] (**) Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
[    30.634] (**) Logitech USB Optical Mouse: EmulateWheelButton: 4,
EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    30.634] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/usb_device_46d_c05a_noserial_if0_logicaldev_input"
[    30.634] (II) XINPUT: Adding extended input device "Logitech USB
Optical Mouse" (type: MOUSE)
[    30.634] (II) Logitech USB Optical Mouse: initialized for relative axes.
[    30.634] (**) Logitech USB Optical Mouse: (accel) keeping
acceleration scheme 1
[    30.634] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
[    30.634] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[    30.634] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[    30.639] (II) config/hal: Adding input device American Megatrends
Inc. Virtual Keyboard and Mouse
[    30.639] (II) Using input driver 'evdev' for 'American Megatrends
Inc. Virtual Keyboard and Mouse'
[    30.639] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    30.639] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
always reports core events
[    30.639] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
Device: "/dev/input/event7"
[    30.643] (--) American Megatrends Inc. Virtual Keyboard and Mouse:
Found 3 mouse buttons
[    30.643] (--) American Megatrends Inc. Virtual Keyboard and Mouse:
Found scroll wheel(s)
[    30.643] (--) American Megatrends Inc. Virtual Keyboard and Mouse:
Found relative axes
[    30.643] (--) American Megatrends Inc. Virtual Keyboard and Mouse:
Found absolute axes
[    30.643] (--) American Megatrends Inc. Virtual Keyboard and Mouse:
Found x and y absolute axes
[    30.643] (II) American Megatrends Inc. Virtual Keyboard and Mouse:
Configuring as mouse
[    30.643] (II) American Megatrends Inc. Virtual Keyboard and Mouse:
Adding scrollwheel support
[    30.643] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
YAxisMapping: buttons 4 and 5
[    30.643] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout:
200
[    30.643] (**) Option "config_info"
"hal:/org/freedesktop/Hal/devices/usb_device_46b_ff10_serial_if1_logicaldev_input"
[    30.643] (II) XINPUT: Adding extended input device "American
Megatrends Inc. Virtual Keyboard and Mouse" (type: MOUSE)
[    30.643] (EE) American Megatrends Inc. Virtual Keyboard and Mouse:
failed to initialize for relative axes.
[    30.643] (II) American Megatrends Inc. Virtual Keyboard and Mouse:
initialized for absolute axes.
[    30.643] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
(accel) keeping acceleration scheme 1
[    30.643] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
(accel) acceleration profile 0
[    30.643] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
(accel) acceleration factor: 2.000
[    30.643] (**) American Megatrends Inc. Virtual Keyboard and Mouse:
(accel) acceleration threshold: 4

-- end xorg.conf --


Again, any help that you could provide would be very appreciated.

Thanks,
  James



More information about the xorg mailing list