You are not logged in.

#1 2011-02-23 00:54:43

neurolysis
Member
Registered: 2011-02-23
Posts: 112
Website

[SOLVED] Mouse cursor does not appear in Xorg

Hi,

I recently migrated from NetBSD to Arch, loving it so far, but I've run into a problem. Openbox has been running great for me so far, but now the cursor seems to have disappeared from Xorg. The last things I did were:

echo 'tint2
wicd-client' >> ~/.config/openbox/autostart.sh

I also set the following in /etc/rc.conf for wicd as instructed in the wiki:

INTERFACES=(!eth0 !wlan0)

I also added dbus wicd to my daemons array:

DAEMONS=( ... dbus wicd ... )

So now my daemons array looks like this:

DAEMONS=(syslog-ng dbus wicd !network netfs crond sshd slim)

I've tried reversing the above steps, but to no joy. I have noticed, however, that if I send a message to the display with xmessage, the cursor appears in the top left as the standard Xorg "X" mouse cursor and can be moved. However, right clicking or left clicking does not seem to interact with openbox as it should at this point.

I did wonder if it was merely the cursor missing and the mouse was still actually performing actions, but if I right click I get no message from my window manager. System/Xorg information follows:

[chris@chris-laptop ~]$ lspci
00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 1 (rev 02)
00:1c.1 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 2 (rev 02)
00:1c.2 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 3 (rev 02)
00:1c.3 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 4 (rev 02)
00:1d.0 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #3 (rev 02)
00:1d.3 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #4 (rev 02)
00:1d.7 USB Controller: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)
00:1f.3 SMBus: Intel Corporation N10/ICH 7 Family SMBus Controller (rev 02)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)
03:00.0 Ethernet controller: Atheros Communications Inc. AR5001 Wireless Network Adapter (rev 01)
[chris@chris-laptop ~]$ cat /etc/X11/xorg.conf
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath   "/usr/lib/xorg/modules"
        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/"
EndSection

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

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "AccelMethod"               # [<str>]
        #Option     "DRI"                       # [<bool>]
        #Option     "ColorKey"                  # <i>
        #Option     "VideoKey"                  # <i>
        #Option     "FallbackDebug"             # [<bool>]
        #Option     "Tiling"                    # [<bool>]
        #Option     "Shadow"                    # [<bool>]
        #Option     "SwapbuffersWait"           # [<bool>]
        #Option     "XvMC"                      # [<bool>]
        #Option     "XvPreferOverlay"           # [<bool>]
        #Option     "DebugFlushBatches"         # [<bool>]
        #Option     "DebugFlushCaches"          # [<bool>]
        #Option     "DebugWait"                 # [<bool>]
        #Option     "HotPlug"                   # [<bool>]
        Identifier  "Card0"
        Driver      "intel"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     1
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     4
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     8
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "InputClass"
    Identifier         "Keyboard Defaults"
    MatchIsKeyboard    "yes"
    Option             "XkbLayout" "gb"
EndSection
[chris@chris-laptop ~]$ cat /var/log/Xorg.0.log
[    16.174] 
X.Org X Server 1.9.4
Release Date: 2011-02-04
[    16.174] X Protocol Version 11, Revision 0
[    16.174] Build Operating System: Linux 2.6.37-ARCH i686 
[    16.174] Current Operating System: Linux chris-laptop 2.6.37-ARCH #1 SMP PREEMPT Fri Feb 18 16:58:42 UTC 2011 i686
[    16.174] Kernel command line: root=/dev/disk/by-uuid/0bb55e9c-db1d-4383-8564-30ae6ebaba68 ro
[    16.174] Build Date: 04 February 2011  09:39:45PM
[    16.174]  
[    16.187] Current version of pixman: 0.20.2
[    16.187]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    16.187] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    16.187] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 23 00:51:59 2011
[    16.212] (==) Using config file: "/etc/X11/xorg.conf"
[    16.212] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    16.243] (==) ServerLayout "X.org Configured"
[    16.243] (**) |-->Screen "Screen0" (0)
[    16.243] (**) |   |-->Monitor "Monitor0"
[    16.243] (**) |   |-->Device "Card0"
[    16.243] (**) |-->Input Device "Mouse0"
[    16.244] (**) |-->Input Device "Keyboard0"
[    16.244] (==) Automatically adding devices
[    16.244] (==) Automatically enabling devices
[    16.272] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    16.273]     Entry deleted from font path.
[    16.326] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    16.326]     Entry deleted from font path.
[    16.326] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
[    16.326] (**) ModulePath set to "/usr/lib/xorg/modules"
[    16.326] (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    16.326] (WW) Disabling Mouse0
[    16.326] (WW) Disabling Keyboard0
[    16.326] (II) Loader magic: 0x81f3040
[    16.326] (II) Module ABI versions:
[    16.326]     X.Org ANSI C Emulation: 0.4
[    16.326]     X.Org Video Driver: 8.0
[    16.326]     X.Org XInput driver : 11.0
[    16.326]     X.Org Server Extension : 4.0
[    16.328] (--) PCI:*(0:0:2:0) 8086:27ae:1025:015b rev 3, Mem @ 0x58480000/524288, 0x40000000/268435456, 0x58500000/262144, I/O @ 0x000060c0/8
[    16.329] (--) PCI: (0:0:2:1) 8086:27a6:1025:015b rev 3, Mem @ 0x58400000/524288
[    16.329] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    16.329] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[    16.329] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[    16.329] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    16.329] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[    16.329] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[    16.329] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[    16.329] (II) LoadModule: "extmod"
[    16.332] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    16.342] (II) Module extmod: vendor="X.Org Foundation"
[    16.342]     compiled for 1.9.4, module version = 1.0.0
[    16.342]     Module class: X.Org Server Extension
[    16.342]     ABI class: X.Org Server Extension, version 4.0
[    16.342] (II) Loading extension MIT-SCREEN-SAVER
[    16.342] (II) Loading extension XFree86-VidModeExtension
[    16.342] (II) Loading extension XFree86-DGA
[    16.342] (II) Loading extension DPMS
[    16.342] (II) Loading extension XVideo
[    16.342] (II) Loading extension XVideo-MotionCompensation
[    16.342] (II) Loading extension X-Resource
[    16.342] (II) LoadModule: "glx"
[    16.343] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    16.353] (II) Module glx: vendor="X.Org Foundation"
[    16.353]     compiled for 1.9.4, module version = 1.0.0
[    16.353]     ABI class: X.Org Server Extension, version 4.0
[    16.353] (==) AIGLX enabled
[    16.354] (II) Loading extension GLX
[    16.354] (II) LoadModule: "record"
[    16.354] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    16.355] (II) Module record: vendor="X.Org Foundation"
[    16.355]     compiled for 1.9.4, module version = 1.13.0
[    16.355]     Module class: X.Org Server Extension
[    16.355]     ABI class: X.Org Server Extension, version 4.0
[    16.355] (II) Loading extension RECORD
[    16.355] (II) LoadModule: "dri"
[    16.356] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    16.365] (II) Module dri: vendor="X.Org Foundation"
[    16.365]     compiled for 1.9.4, module version = 1.0.0
[    16.366]     ABI class: X.Org Server Extension, version 4.0
[    16.366] (II) Loading extension XFree86-DRI
[    16.366] (II) LoadModule: "dri2"
[    16.366] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    16.367] (II) Module dri2: vendor="X.Org Foundation"
[    16.367]     compiled for 1.9.4, module version = 1.2.0
[    16.367]     ABI class: X.Org Server Extension, version 4.0
[    16.367] (II) Loading extension DRI2
[    16.368] (II) LoadModule: "dbe"
[    16.368] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    16.369] (II) Module dbe: vendor="X.Org Foundation"
[    16.369]     compiled for 1.9.4, module version = 1.0.0
[    16.369]     Module class: X.Org Server Extension
[    16.369]     ABI class: X.Org Server Extension, version 4.0
[    16.369] (II) Loading extension DOUBLE-BUFFER
[    16.369] (II) LoadModule: "intel"
[    16.370] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    16.393] (II) Module intel: vendor="X.Org Foundation"
[    16.394]     compiled for 1.9.4, module version = 2.14.0
[    16.394]     Module class: X.Org Video Driver
[    16.394]     ABI class: X.Org Video Driver, version 8.0
[    16.394] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
    Sandybridge, Sandybridge
[    16.395] (++) using VT number 7

[    16.410] drmOpenDevice: node name is /dev/dri/card0
[    16.411] drmOpenDevice: open result is 8, (OK)
[    16.411] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[    16.411] drmOpenDevice: node name is /dev/dri/card0
[    16.411] drmOpenDevice: open result is 8, (OK)
[    16.411] drmOpenByBusid: drmOpenMinor returns 8
[    16.411] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[    16.411] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    16.411] (==) intel(0): RGB weight 888
[    16.411] (==) intel(0): Default visual is TrueColor
[    16.411] (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME
[    16.411] (--) intel(0): Chipset: "945GME"
[    16.411] (**) intel(0): Tiling enabled
[    16.411] (**) intel(0): SwapBuffers wait enabled
[    16.412] (==) intel(0): video overlay key set to 0x101fe
[    16.421] (II) intel(0): Output LVDS1 using monitor section Monitor0
[    16.450] (II) intel(0): Output VGA1 has no monitor section
[    16.450] (II) intel(0): EDID for output LVDS1
[    16.450] (II) intel(0): Manufacturer: CMO  Model: 209  Serial#: 0
[    16.450] (II) intel(0): Year: 2008  Week: 31
[    16.450] (II) intel(0): EDID Version: 1.3
[    16.450] (II) intel(0): Digital Display Input
[    16.450] (II) intel(0): Max Image Size [cm]: horiz.: 21  vert.: 12
[    16.450] (II) intel(0): Gamma: 2.20
[    16.450] (II) intel(0): No DPMS capabilities specified
[    16.450] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    16.450] (II) intel(0): First detailed timing is preferred mode
[    16.450] (II) intel(0): redX: 0.584 redY: 0.362   greenX: 0.350 greenY: 0.583
[    16.450] (II) intel(0): blueX: 0.154 blueY: 0.105   whiteX: 0.313 whiteY: 0.329
[    16.450] (II) intel(0): Manufacturer's mask: 0
[    16.451] (II) intel(0): Supported detailed timing:
[    16.451] (II) intel(0): clock: 45.0 MHz   Image Size:  195 x 113 mm
[    16.451] (II) intel(0): h_active: 1024  h_sync: 1072  h_sync_end 1104 h_blank_end 1200 h_border: 0
[    16.451] (II) intel(0): v_active: 600  v_sync: 603  v_sync_end 609 v_blanking: 625 v_border: 0
[    16.451] (II) intel(0):  N089L6-L02
[    16.451] (II) intel(0):  CMO
[    16.451] (II) intel(0):  N089L6-L02
[    16.451] (II) intel(0): EDID (in hex):
[    16.451] (II) intel(0):     00ffffffffffff000daf090200000000
[    16.451] (II) intel(0):     1f12010390150c780ab985955c599527
[    16.451] (II) intel(0):     1b505400000001010101010101010101
[    16.451] (II) intel(0):     010101010101941100b0405819203020
[    16.451] (II) intel(0):     3600c37100000018000000fe004e3038
[    16.451] (II) intel(0):     394c362d4c30320a2020000000fe0043
[    16.451] (II) intel(0):     4d4f0a202020202020202020000000fe
[    16.451] (II) intel(0):     004e3038394c362d4c30320a2020009d
[    16.451] (II) intel(0): EDID vendor "CMO", prod id 521
[    16.451] (II) intel(0): Printing DDC gathered Modelines:
[    16.451] (II) intel(0): Modeline "1024x600"x0.0   45.00  1024 1072 1104 1200  600 603 609 625 -hsync -vsync (37.5 kHz)
[    16.463] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[    16.463] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    16.463] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    16.463] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[    16.463] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[    16.463] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[    16.463] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[    16.463] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[    16.463] (II) intel(0): Printing probed modes for output LVDS1
[    16.463] (II) intel(0): Modeline "1024x600"x60.0   45.00  1024 1072 1104 1200  600 603 609 625 -hsync -vsync (37.5 kHz)
[    16.463] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    16.463] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    16.463] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    16.490] (II) intel(0): EDID for output VGA1
[    16.490] (II) intel(0): Output LVDS1 connected
[    16.490] (II) intel(0): Output VGA1 disconnected
[    16.490] (II) intel(0): Using exact sizes for initial modes
[    16.490] (II) intel(0): Output LVDS1 using initial mode 1024x600
[    16.490] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    16.490] (II) intel(0): Kernel page flipping support detected, enabling
[    16.490] (**) intel(0): Display dimensions: (210, 120) mm
[    16.490] (**) intel(0): DPI set to (123, 126)
[    16.490] (II) Loading sub module "fb"
[    16.490] (II) LoadModule: "fb"
[    16.491] (II) Loading /usr/lib/xorg/modules/libfb.so
[    16.501] (II) Module fb: vendor="X.Org Foundation"
[    16.501]     compiled for 1.9.4, module version = 1.0.0
[    16.501]     ABI class: X.Org ANSI C Emulation, version 0.4
[    16.501] (II) Loading sub module "dri2"
[    16.501] (II) LoadModule: "dri2"
[    16.501] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
[    16.502] (==) Depth 24 pixmap format is 32 bpp
[    16.502] (II) intel(0): [DRI2] Setup complete
[    16.502] (II) intel(0): [DRI2]   DRI driver: i915
[    16.502] (II) intel(0): Allocated new frame buffer 1024x600 stride 4096, tiled
[    16.505] (II) UXA(0): Driver registered support for the following operations:
[    16.506] (II)         solid
[    16.506] (II)         copy
[    16.506] (II)         composite (RENDER acceleration)
[    16.506] (II)         put_image
[    16.506] (II)         get_image
[    16.506] (==) intel(0): Backing store disabled
[    16.506] (==) intel(0): Silken mouse enabled
[    16.507] (II) intel(0): Initializing HW Cursor
[    16.516] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    16.517] (==) intel(0): DPMS enabled
[    16.517] (==) intel(0): Intel XvMC decoder disabled
[    16.517] (II) intel(0): Set up textured video
[    16.517] (II) intel(0): Set up overlay video
[    16.517] (II) intel(0): direct rendering: DRI2 Enabled
[    16.517] (==) intel(0): hotplug detection: "enabled"
[    16.517] (--) RandR disabled
[    16.517] (II) Initializing built-in extension Generic Event Extension
[    16.517] (II) Initializing built-in extension SHAPE
[    16.517] (II) Initializing built-in extension MIT-SHM
[    16.517] (II) Initializing built-in extension XInputExtension
[    16.518] (II) Initializing built-in extension XTEST
[    16.518] (II) Initializing built-in extension BIG-REQUESTS
[    16.518] (II) Initializing built-in extension SYNC
[    16.518] (II) Initializing built-in extension XKEYBOARD
[    16.518] (II) Initializing built-in extension XC-MISC
[    16.518] (II) Initializing built-in extension SECURITY
[    16.518] (II) Initializing built-in extension XINERAMA
[    16.518] (II) Initializing built-in extension XFIXES
[    16.518] (II) Initializing built-in extension RENDER
[    16.518] (II) Initializing built-in extension RANDR
[    16.518] (II) Initializing built-in extension COMPOSITE
[    16.518] (II) Initializing built-in extension DAMAGE
[    16.621] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    16.621] (II) AIGLX: enabled GLX_INTEL_swap_event
[    16.621] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    16.621] (II) AIGLX: enabled GLX_SGI_make_current_read
[    16.621] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    16.621] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
[    16.621] (II) GLX: Initialized DRI2 GL provider for screen 0
[    16.623] (II) intel(0): Setting screen physical size to 270 x 158
[    17.652] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[    17.652] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    17.652] (**) Power Button: Applying InputClass "Keyboard Defaults"
[    17.652] (II) LoadModule: "evdev"
[    17.653] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    17.659] (II) Module evdev: vendor="X.Org Foundation"
[    17.660]     compiled for 1.9.4, module version = 2.6.0
[    17.660]     Module class: X.Org XInput Driver
[    17.660]     ABI class: X.Org XInput driver, version 11.0
[    17.660] (**) Power Button: always reports core events
[    17.660] (**) Power Button: Device: "/dev/input/event5"
[    17.676] (--) Power Button: Found keys
[    17.676] (II) Power Button: Configuring as keyboard
[    17.676] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    17.677] (**) Option "xkb_rules" "evdev"
[    17.677] (**) Option "xkb_model" "evdev"
[    17.677] (**) Option "xkb_layout" "gb"
[    17.779] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[    17.779] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    17.779] (**) Video Bus: Applying InputClass "Keyboard Defaults"
[    17.779] (**) Video Bus: always reports core events
[    17.779] (**) Video Bus: Device: "/dev/input/event6"
[    17.800] (--) Video Bus: Found keys
[    17.800] (II) Video Bus: Configuring as keyboard
[    17.800] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[    17.800] (**) Option "xkb_rules" "evdev"
[    17.800] (**) Option "xkb_model" "evdev"
[    17.800] (**) Option "xkb_layout" "gb"
[    17.817] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    17.817] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    17.817] (**) Power Button: Applying InputClass "Keyboard Defaults"
[    17.817] (**) Power Button: always reports core events
[    17.817] (**) Power Button: Device: "/dev/input/event2"
[    17.840] (--) Power Button: Found keys
[    17.840] (II) Power Button: Configuring as keyboard
[    17.840] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    17.840] (**) Option "xkb_rules" "evdev"
[    17.840] (**) Option "xkb_model" "evdev"
[    17.840] (**) Option "xkb_layout" "gb"
[    17.842] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
[    17.842] (II) No input driver/identifier specified (ignoring)
[    17.843] (II) config/udev: Adding input device Sleep Button (/dev/input/event4)
[    17.843] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    17.843] (**) Sleep Button: Applying InputClass "Keyboard Defaults"
[    17.843] (**) Sleep Button: always reports core events
[    17.843] (**) Sleep Button: Device: "/dev/input/event4"
[    17.866] (--) Sleep Button: Found keys
[    17.866] (II) Sleep Button: Configuring as keyboard
[    17.866] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[    17.866] (**) Option "xkb_rules" "evdev"
[    17.867] (**) Option "xkb_model" "evdev"
[    17.867] (**) Option "xkb_layout" "gb"
[    17.871] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
[    17.871] (II) No input driver/identifier specified (ignoring)
[    17.873] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event10)
[    17.873] (II) No input driver/identifier specified (ignoring)
[    17.881] (II) config/udev: Adding input device USB 2.0 Camera (/dev/input/event8)
[    17.881] (**) USB 2.0 Camera: Applying InputClass "evdev keyboard catchall"
[    17.881] (**) USB 2.0 Camera: Applying InputClass "Keyboard Defaults"
[    17.881] (**) USB 2.0 Camera: always reports core events
[    17.881] (**) USB 2.0 Camera: Device: "/dev/input/event8"
[    17.906] (--) USB 2.0 Camera: Found keys
[    17.906] (II) USB 2.0 Camera: Configuring as keyboard
[    17.906] (II) XINPUT: Adding extended input device "USB 2.0 Camera" (type: KEYBOARD)
[    17.906] (**) Option "xkb_rules" "evdev"
[    17.907] (**) Option "xkb_model" "evdev"
[    17.907] (**) Option "xkb_layout" "gb"
[    17.915] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[    17.915] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    17.915] (**) AT Translated Set 2 keyboard: Applying InputClass "Keyboard Defaults"
[    17.915] (**) AT Translated Set 2 keyboard: always reports core events
[    17.915] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[    17.930] (--) AT Translated Set 2 keyboard: Found keys
[    17.930] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[    17.930] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[    17.930] (**) Option "xkb_rules" "evdev"
[    17.930] (**) Option "xkb_model" "evdev"
[    17.930] (**) Option "xkb_layout" "gb"
[    17.932] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event7)
[    17.932] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[    17.932] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    17.932] (II) LoadModule: "synaptics"
[    17.932] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    17.984] (II) Module synaptics: vendor="X.Org Foundation"
[    17.984]     compiled for 1.9.2, module version = 1.3.0
[    17.984]     Module class: X.Org XInput Driver
[    17.984]     ABI class: X.Org XInput driver, version 11.0
[    17.984] (II) Synaptics touchpad driver version 1.3.0
[    17.984] (**) Option "Device" "/dev/input/event7"
[    18.106] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5888
[    18.106] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 5218
[    18.106] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    18.106] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    18.106] (--) SynPS/2 Synaptics TouchPad: buttons: left right
[    18.107] (**) Option "TapButton1" "1"
[    18.107] (**) Option "TapButton2" "2"
[    18.107] (**) Option "TapButton3" "3"
[    18.213] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    18.213] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    18.266] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[    18.266] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[    18.267] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
[    18.267] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.034
[    18.267] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    18.267] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    18.267] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    18.267] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    18.346] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    18.347] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    18.347] (II) No input driver/identifier specified (ignoring)
[    18.348] (II) config/udev: Adding input device PC Speaker (/dev/input/event1)
[    18.349] (II) No input driver/identifier specified (ignoring)

Any ideas? Thanks.

Last edited by neurolysis (2011-02-23 16:49:42)

Offline

#2 2011-02-23 16:49:11

neurolysis
Member
Registered: 2011-02-23
Posts: 112
Website

Re: [SOLVED] Mouse cursor does not appear in Xorg

And, of course, as soon as it isn't 3am, I realise that it is because I haven't run the programs in the background. Oh dear...

Offline

Board footer

Powered by FluxBB