LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 08-15-2012, 12:35 PM   #1
spunce
LQ Newbie
 
Registered: Aug 2012
Location: WV
Distribution: RHEL 5.6 & CentOS 6.3
Posts: 5

Rep: Reputation: Disabled
Keyboard and Mouse Not Working in X


I have a server running CentOS 6.3 and without warning it stopped recognizing the keyboard and mouse. I can boot to single user mode and run level 3 and the keyboard/mouse still work but immediately after I startx the numlock light on the keyboard turns off and the system doesn't respond to any keyboard/mouse input.

I've tried restarting haldaemon and then starting X but I get the same result. I've also tried creating and modifying an xorg.conf file but nothing I seems to do changes anything. Also, I haven't tried messing with any drivers because I'm a novice at this stuff so I don't want to reinstall anything without being sure about it. Here is some system info:

Code:
[root@server ~]# uname -a
Linux server 2.6.32-279.1.1.el6x84_64 #1 SMP Tue Jul 10 13:47:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
Here's my attempt at creating an xorg.conf file:
Code:
Section "ServerFlags"
	Option "DontZap" "off"
EndSection

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

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "catalogue:/etc/X11/fontpath.d"
	FontPath     "built-ins"
EndSection

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

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
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     "SWcursor"           	# [<bool>]
        #Option     "HWcursor"           	# [<bool>]
        #Option     "PciRetry"           	# [<bool>]
        #Option     "SyncOnGreen"        	# [<bool>]
        #Option     "NoAccel"            	# [<bool>]
        #Option     "ShowCache"          	# [<bool>]
        #Option     "MGASDRAM"           	# [<bool>]
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "UseFBDev"           	# [<bool>]
        #Option     "ColorKey"           	# <i>
        #Option     "SetMclk"            	# <freq>
        #Option     "OverclockMem"       	# [<bool>]
        #Option     "VideoKey"           	# <i>
        #Option     "TexturedVideo"      	# [<bool>]
        #Option     "Crtc2Half"          	# [<bool>]
        #Option     "Crtc2Ram"           	# <i>
        #Option     "Int10"              	# [<bool>]
        #Option     "AGPMode"            	# <i>
        #Option     "AGPSize"            	# <i>
        #Option     "DigitalScreen1"     	# [<bool>]
        #Option     "DigitalScreen2"     	# [<bool>]
        #Option     "TV"                 	# [<bool>]
        #Option     "TVStandard"         	# [<str>]
        #Option     "CableType"          	# [<str>]
        #Option     "NoHal"              	# [<bool>]
        #Option     "SwappedHead"        	# [<bool>]
        #Option     "DRI"                	# [<bool>]
        #Option     "MergedFB"           	# [<bool>]
        #Option     "Monitor2HSync"      	# [<str>]
        #Option     "Monitor2VRefresh"   	# [<str>]
        #Option     "Monitor2Position"   	# [<str>]
        #Option     "MetaModes"          	# [<str>]
        #Option     "OldDmaInit"         	# [<bool>]
        #Option     "ForcePciDma"        	# [<bool>]
        #Option     "AccelMethod"        	# [<str>]
        #Option     "KVM"                	# [<bool>]
        #Option     "RANDR12"            	# [<bool>]
	Identifier  "Card0"
	Driver      "mga"
	BusID       "PCI:6:3:0"
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     "ShadowFB"           	# [<bool>]
        #Option     "Rotate"             	# <str>
        #Option     "fbdev"              	# <str>
        #Option     "debug"              	# [<bool>]
	Identifier  "Card1"
	Driver      "fbdev"
	BusID       "PCI:6:3:0"
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     "ShadowFB"           	# [<bool>]
        #Option     "DefaultRefresh"     	# [<bool>]
        #Option     "ModeSetClearScreen" 	# [<bool>]
	Identifier  "Card2"
	Driver      "vesa"
	BusID       "PCI:6:3: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
Spunce

Last edited by spunce; 08-15-2012 at 03:01 PM.
 
Old 08-15-2012, 12:50 PM   #2
spunce
LQ Newbie
 
Registered: Aug 2012
Location: WV
Distribution: RHEL 5.6 & CentOS 6.3
Posts: 5

Original Poster
Rep: Reputation: Disabled
Here's my /var/log/Xorg.0.log file:
Code:
[  3227.175] 
X.Org X Server 1.10.6
Release Date: 2012-02-10
[  3227.176] X Protocol Version 11, Revision 0
[  3227.176] Build Operating System: c6b9 2.6.32-220.el6.x86_64 
[  3227.176] Current Operating System: Linux hpcms1 2.6.32-279.1.1.el6.x86_64 #1 SMP Tue Jul 10 13:47:21 UTC 2012 x86_64
[  3227.176] Kernel command line: root=/dev/mapper/vg_arch5-lv_root ro rd_LVM_LV=vg_arch5/lv_root rd_LVM_LV=vg_arch5/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=129M@0M rhgb quiet 3
[  3227.177] Build Date: 22 June 2012  08:01:35PM
[  3227.177] Build ID: xorg-x11-server 1.10.6-1.el6.centos 
[  3227.177] Current version of pixman: 0.18.4
[  3227.177] 	Before reporting problems, check https://www.redhat.com/apps/support/
	to make sure that you have the latest version.
[  3227.178] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  3227.179] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug 14 20:04:32 2012
[  3227.179] (==) Using config file: "/etc/X11/xorg.conf"
[  3227.180] (==) ServerLayout "Default Layout"
[  3227.180] (**) |-->Screen "Screen0" (0)
[  3227.180] (**) |   |-->Monitor "Monitor0"
[  3227.180] (**) |   |-->Device "Card0"
[  3227.180] (**) |-->Input Device "Mouse0"
[  3227.180] (**) |-->Input Device "Keyboard0"
[  3227.180] (**) Option "DontZap" "off"
[  3227.180] (==) Automatically adding devices
[  3227.180] (==) Automatically enabling devices
[  3227.180] (**) FontPath set to:
	catalogue:/etc/X11/fontpath.d,
	built-ins,
	catalogue:/etc/X11/fontpath.d,
	built-ins
[  3227.180] (**) ModulePath set to "/usr/lib64/xorg/modules"
[  3227.180] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  3227.180] (WW) Disabling Mouse0
[  3227.180] (WW) Disabling Keyboard0
[  3227.180] (II) Loader magic: 0x7d51a0
[  3227.180] (II) Module ABI versions:
[  3227.180] 	X.Org ANSI C Emulation: 0.4
[  3227.180] 	X.Org Video Driver: 10.0
[  3227.180] 	X.Org XInput driver : 12.2
[  3227.180] 	X.Org Server Extension : 5.0
[  3227.181] (--) PCI:*(0:6:3:0) 102b:0532:1028:0236 rev 10, Mem @ 0xd5800000/8388608, 0xde7fc000/16384, 0xde800000/8388608, BIOS @ 0x????????/65536
[  3227.181] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[  3227.181] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[  3227.181] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  3227.181] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[  3227.181] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[  3227.181] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[  3227.181] (II) LoadModule: "dbe"
[  3227.190] (II) Loading /usr/lib64/xorg/modules/extensions/libdbe.so
[  3227.190] (II) Module dbe: vendor="X.Org Foundation"
[  3227.190] 	compiled for 1.10.6, module version = 1.0.0
[  3227.190] 	Module class: X.Org Server Extension
[  3227.190] 	ABI class: X.Org Server Extension, version 5.0
[  3227.190] (II) Loading extension DOUBLE-BUFFER
[  3227.190] (II) LoadModule: "record"
[  3227.190] (II) Loading /usr/lib64/xorg/modules/extensions/librecord.so
[  3227.190] (II) Module record: vendor="X.Org Foundation"
[  3227.190] 	compiled for 1.10.6, module version = 1.13.0
[  3227.190] 	Module class: X.Org Server Extension
[  3227.190] 	ABI class: X.Org Server Extension, version 5.0
[  3227.190] (II) Loading extension RECORD
[  3227.190] (II) LoadModule: "dri"
[  3227.190] (II) Loading /usr/lib64/xorg/modules/extensions/libdri.so
[  3227.191] (II) Module dri: vendor="X.Org Foundation"
[  3227.191] 	compiled for 1.10.6, module version = 1.0.0
[  3227.191] 	ABI class: X.Org Server Extension, version 5.0
[  3227.191] (II) Loading extension XFree86-DRI
[  3227.191] (II) LoadModule: "dri2"
[  3227.191] (II) Loading /usr/lib64/xorg/modules/extensions/libdri2.so
[  3227.191] (II) Module dri2: vendor="X.Org Foundation"
[  3227.191] 	compiled for 1.10.6, module version = 1.2.0
[  3227.191] 	ABI class: X.Org Server Extension, version 5.0
[  3227.191] (II) Loading extension DRI2
[  3227.191] (II) LoadModule: "glx"
[  3227.191] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[  3227.191] (II) Module glx: vendor="X.Org Foundation"
[  3227.191] 	compiled for 1.10.6, module version = 1.0.0
[  3227.191] 	ABI class: X.Org Server Extension, version 5.0
[  3227.191] (==) AIGLX enabled
[  3227.191] (II) Loading extension GLX
[  3227.191] (II) LoadModule: "extmod"
[  3227.191] (II) Loading /usr/lib64/xorg/modules/extensions/libextmod.so
[  3227.192] (II) Module extmod: vendor="X.Org Foundation"
[  3227.192] 	compiled for 1.10.6, module version = 1.0.0
[  3227.192] 	Module class: X.Org Server Extension
[  3227.192] 	ABI class: X.Org Server Extension, version 5.0
[  3227.192] (II) Loading extension SELinux
[  3227.192] (II) Loading extension MIT-SCREEN-SAVER
[  3227.192] (II) Loading extension XFree86-VidModeExtension
[  3227.192] (II) Loading extension XFree86-DGA
[  3227.192] (II) Loading extension DPMS
[  3227.192] (II) Loading extension XVideo
[  3227.192] (II) Loading extension XVideo-MotionCompensation
[  3227.192] (II) Loading extension X-Resource
[  3227.192] (II) LoadModule: "mga"
[  3227.192] (II) Loading /usr/lib64/xorg/modules/drivers/mga_drv.so
[  3227.192] (II) Module mga: vendor="X.Org Foundation"
[  3227.192] 	compiled for 1.10.4, module version = 1.4.13
[  3227.192] 	Module class: X.Org Video Driver
[  3227.192] 	ABI class: X.Org Video Driver, version 10.0
[  3227.192] (II) MGA: driver for Matrox chipsets: mga2064w, mga1064sg, mga2164w,
	mga2164w AGP, mgag100, mgag100 PCI, mgag200, mgag200 PCI,
	mgag200 SE A PCI, mgag200 SE B PCI, mgag200 EV Maxim,
	mgag200 ER SH7757, mgag200 eW Nuvoton, mgag200eH, mgag400, mgag550
[  3227.192] (--) using VT number 7

[  3227.195] (II) Loading /usr/lib64/xorg/modules/drivers/mga_drv.so
[  3227.195] (II) Loading sub module "vgahw"
[  3227.195] (II) LoadModule: "vgahw"
[  3227.196] (II) Loading /usr/lib64/xorg/modules/libvgahw.so
[  3227.196] (II) Module vgahw: vendor="X.Org Foundation"
[  3227.196] 	compiled for 1.10.6, module version = 0.1.0
[  3227.196] 	ABI class: X.Org Video Driver, version 10.0
[  3227.196] (--) MGA(0): Chipset: "mgag200 eW Nuvoton"
[  3227.196] (--) MGA(0): Linear framebuffer at 0xD5800000
[  3227.196] (--) MGA(0): MMIO registers at 0xDE7FC000
[  3227.196] (--) MGA(0): Pseudo-DMA transfer window at 0xDE800000
[  3227.237] (==) MGA(0): Depth 24, (--) framebuffer bpp 32
[  3227.237] (==) MGA(0): RGB weight 888
[  3227.238] (**) MGA(0): Enabling KVM
[  3227.238] (==) MGA(0): Using AGP 1x mode
[  3227.238] (==) MGA(0): Using HW cursor
[  3227.238] (==) MGA(0): Using XAA acceleration
[  3227.238] (--) MGA(0): Using shadowfb for RANDR 1.2 support
[  3227.238] (--) MGA(0): Video BIOS info block at offset 0x07D40
[  3227.238] (==) MGA(0): VideoRAM: 8128 kByte
[  3227.238] (II) MGA(0): I2C bus "DDC P1" initialized.
[  3227.238] (II) MGA(0): Output VGA1 using monitor section Monitor0
[  3227.240] (II) Loading sub module "vbe"
[  3227.240] (II) LoadModule: "vbe"
[  3227.240] (II) Loading /usr/lib64/xorg/modules/libvbe.so
[  3227.240] (II) Module vbe: vendor="X.Org Foundation"
[  3227.240] 	compiled for 1.10.6, module version = 1.1.0
[  3227.240] 	ABI class: X.Org Video Driver, version 10.0
[  3227.240] (II) Loading sub module "int10"
[  3227.240] (II) LoadModule: "int10"
[  3227.241] (II) Loading /usr/lib64/xorg/modules/libint10.so
[  3227.241] (II) Module int10: vendor="X.Org Foundation"
[  3227.241] 	compiled for 1.10.6, module version = 1.0.0
[  3227.241] 	ABI class: X.Org Video Driver, version 10.0
[  3227.241] (II) MGA(0): initializing int10
[  3227.241] (II) MGA(0): Primary V_BIOS segment is: 0xc000
[  3227.241] (II) MGA(0): VESA BIOS detected
[  3227.241] (II) MGA(0): VESA VBE Version 3.0
[  3227.241] (II) MGA(0): VESA VBE Total Mem: 8192 kB
[  3227.241] (II) MGA(0): VESA VBE OEM: Matrox Graphics Inc.
[  3227.241] (II) MGA(0): VESA VBE OEM Software Rev: 3.8
[  3227.241] (II) MGA(0): VESA VBE OEM Vendor: Matrox
[  3227.241] (II) MGA(0): VESA VBE OEM Product: MGA-G200
[  3227.241] (II) MGA(0): VESA VBE OEM Product Rev: 00
[  3227.241] (II) Loading sub module "ddc"
[  3227.241] (II) LoadModule: "ddc"
[  3227.241] (II) Module "ddc" already built-in
[  3227.995] (II) MGA(0): VESA VBE DDC supported
[  3227.995] (II) MGA(0): VESA VBE DDC Level 2
[  3227.995] (II) MGA(0): VESA VBE DDC transfer in appr. 1 sec.
[  3228.747] (II) MGA(0): VESA VBE DDC read successfully
[  3228.747] (II) MGA(0): EDID for output VGA1
[  3228.747] (II) MGA(0): Manufacturer: AVO  Model: 0  Serial#: 0
[  3228.747] (II) MGA(0): Year: 2003  Week: 0
[  3228.747] (II) MGA(0): EDID Version: 1.3
[  3228.747] (II) MGA(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[  3228.747] (II) MGA(0): Sync:  Separate  Composite  SyncOnGreen
[  3228.747] (II) MGA(0): Indeterminate output size
[  3228.747] (II) MGA(0): Gamma: 2.50
[  3228.747] (II) MGA(0): No DPMS capabilities specified; RGB/Color Display
[  3228.747] (II) MGA(0): Default color space is primary color space
[  3228.747] (II) MGA(0): First detailed timing is preferred mode
[  3228.747] (II) MGA(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[  3228.747] (II) MGA(0): blueX: 0.150 blueY: 0.060   whiteX: 0.312 whiteY: 0.329
[  3228.747] (II) MGA(0): Supported established timings:
[  3228.747] (II) MGA(0): 720x400@70Hz
[  3228.747] (II) MGA(0): 640x480@60Hz
[  3228.747] (II) MGA(0): 640x480@72Hz
[  3228.747] (II) MGA(0): 640x480@75Hz
[  3228.747] (II) MGA(0): 800x600@56Hz
[  3228.747] (II) MGA(0): 800x600@60Hz
[  3228.747] (II) MGA(0): 800x600@72Hz
[  3228.747] (II) MGA(0): 800x600@75Hz
[  3228.747] (II) MGA(0): 1024x768@60Hz
[  3228.747] (II) MGA(0): 1024x768@70Hz
[  3228.747] (II) MGA(0): 1024x768@75Hz
[  3228.747] (II) MGA(0): Manufacturer's mask: 0
[  3228.747] (II) MGA(0): Supported detailed timing:
[  3228.747] (II) MGA(0): clock: 78.8 MHz   Image Size:  304 x 228 mm
[  3228.747] (II) MGA(0): h_active: 1024  h_sync: 1040  h_sync_end 1136 h_blank_end 1312 h_border: 0
[  3228.747] (II) MGA(0): v_active: 768  v_sync: 769  v_sync_end 772 v_blanking: 800 v_border: 0
[  3228.747] (II) MGA(0): Ranges: V min: 56 V max: 75 Hz, H min: 24 H max: 61 kHz, PixClock max 85 MHz
[  3228.747] (II) MGA(0): Monitor name: Smart Cable
[  3228.747] (II) MGA(0): EDID (in hex):
[  3228.747] (II) MGA(0): 	00ffffffffffff0006cf000000000000
[  3228.747] (II) MGA(0): 	000d01036e0000960eee91a3544c9926
[  3228.747] (II) MGA(0): 	0f5054afce0001010101010101010101
[  3228.747] (II) MGA(0): 	010101010101c31e0020410020301060
[  3228.747] (II) MGA(0): 	130030e41000001e000000fd00384b18
[  3228.747] (II) MGA(0): 	3d08000a202020202020000000fc0053
[  3228.747] (II) MGA(0): 	6d617274204361626c650a2000000000
[  3228.747] (II) MGA(0): 	0000000000000000000000000000002b
[  3228.747] (II) MGA(0): EDID vendor "AVO", prod id 0
[  3228.747] (II) MGA(0): Using EDID range info for horizontal sync
[  3228.747] (II) MGA(0): Using EDID range info for vertical refresh
[  3228.747] (II) MGA(0): Printing DDC gathered Modelines:
.
. A bunch of MGA Modeline stuff...
.
[  3228.749] (==) MGA(0): DPI set to (96, 96)
[  3228.749] (II) MGA(0): YDstOrg is set to 0
[  3228.749] (II) Loading sub module "fb"
[  3228.749] (II) LoadModule: "fb"
[  3228.749] (II) Loading /usr/lib64/xorg/modules/libfb.so
[  3228.749] (II) Module fb: vendor="X.Org Foundation"
[  3228.749] 	compiled for 1.10.6, module version = 1.0.0
[  3228.749] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  3228.749] (II) Loading sub module "ramdac"
[  3228.749] (II) LoadModule: "ramdac"
[  3228.749] (II) Module "ramdac" already built-in
[  3228.749] (II) Loading sub module "shadowfb"
[  3228.749] (II) LoadModule: "shadowfb"
[  3228.749] (II) Loading /usr/lib64/xorg/modules/libshadowfb.so
[  3228.749] (II) Module shadowfb: vendor="X.Org Foundation"
[  3228.749] 	compiled for 1.10.6, module version = 1.0.0
[  3228.749] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  3228.749] (--) Depth 24 pixmap format is 32 bpp
[  3228.751] (II) MGA(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
[  3229.003] Setting DAC:
00: 00 00 00 00 BF 1F 00 00 00 00 00 00 00 00 00 00 
10: 00 00 00 00 00 00 00 00 07 07 C9 FF BF 20 1F 20 
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 40 
30: 00 B0 00 C2 34 14 02 83 00 93 00 77 00 00 00 3A 
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
OPTION  = 41049120
[  3229.003] OPTION2 = 0000B000
[  3229.003] CRTCEXT: 10 88 00 83 00 00
[  3229.033] (--) MGA(0): 64 DWORD fifo
[  3229.033] (==) MGA(0): Default visual is TrueColor
[  3229.033] (EE) MGA(0): Acceleration disabled, not initializing the DRI
[  3229.421] Setting DAC:
00: 00 00 00 00 BF 1F 00 00 00 00 00 00 00 00 00 00 
10: 00 00 00 00 00 00 00 00 07 07 C9 FF BF 20 1F 20 
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 40 
30: 00 B0 00 C2 34 14 02 83 00 93 00 77 00 00 00 3A 
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
OPTION  = 41049120
[  3229.422] OPTION2 = 0000B000
[  3229.422] CRTCEXT: 10 88 00 83 00 00
[  3229.449] (==) MGA(0): Backing store disabled
[  3229.449] (==) MGA(0): Silken mouse enabled
[  3229.449] (==) MGA(0): DPMS enabled
[  3229.449] (II) MGA(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  3229.449] (WW) MGA(0): Direct rendering disabled
[  3229.449] (--) RandR disabled
[  3229.449] (II) Initializing built-in extension Generic Event Extension
[  3229.450] (II) Initializing built-in extension SHAPE
[  3229.450] (II) Initializing built-in extension MIT-SHM
[  3229.450] (II) Initializing built-in extension XInputExtension
[  3229.450] (II) Initializing built-in extension XTEST
[  3229.450] (II) Initializing built-in extension BIG-REQUESTS
[  3229.450] (II) Initializing built-in extension SYNC
[  3229.450] (II) Initializing built-in extension XKEYBOARD
[  3229.450] (II) Initializing built-in extension XC-MISC
[  3229.450] (II) Initializing built-in extension XINERAMA
[  3229.450] (II) Initializing built-in extension XFIXES
[  3229.450] (II) Initializing built-in extension RENDER
[  3229.450] (II) Initializing built-in extension RANDR
[  3229.450] (II) Initializing built-in extension COMPOSITE
[  3229.450] (II) Initializing built-in extension DAMAGE
[  3229.451] (II) SELinux: Disabled on system
[  3229.455] (II) AIGLX: Screen 0 is not DRI2 capable
[  3229.455] (II) AIGLX: Screen 0 is not DRI capable
[  3229.457] (II) AIGLX: Loaded and initialized /usr/lib64/dri/swrast_dri.so
[  3229.457] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[  3229.457] (II) MGA(0): Setting screen physical size to 270 x 203
[  3229.644] (II) config/hal: Adding input device Avocent USB Composite Device-0
[  3229.644] (II) LoadModule: "evdev"
[  3229.645] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3229.645] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3229.645] (II) UnloadModule: "evdev"
[  3229.645] (II) Unloading evdev
[  3229.645] (EE) Failed to load module "evdev" (loader failed, 7)
[  3229.645] (EE) No input driver matching `evdev'
[  3229.645] (EE) config/hal: NewInputDeviceRequest failed (15)
[  3229.651] (II) config/hal: Adding input device Avocent Dell 03R874
[  3229.651] (II) LoadModule: "evdev"
[  3229.651] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3229.651] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3229.651] (II) UnloadModule: "evdev"
[  3229.651] (II) Unloading evdev
[  3229.651] (EE) Failed to load module "evdev" (loader failed, 7)
[  3229.651] (EE) No input driver matching `evdev'
[  3229.651] (EE) config/hal: NewInputDeviceRequest failed (15)
[  3229.657] (II) config/hal: Adding input device Avocent Dell 03R874
[  3229.657] (II) LoadModule: "evdev"
[  3229.657] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3229.657] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3229.657] (II) UnloadModule: "evdev"
[  3229.657] (II) Unloading evdev
[  3229.657] (EE) Failed to load module "evdev" (loader failed, 7)
[  3229.658] (EE) No input driver matching `evdev'
[  3229.658] (EE) config/hal: NewInputDeviceRequest failed (15)
[  3229.664] (II) config/hal: Adding input device Power Button
[  3229.664] (II) LoadModule: "evdev"
[  3229.664] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3229.664] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3229.664] (II) UnloadModule: "evdev"
[  3229.664] (II) Unloading evdev
[  3229.664] (EE) Failed to load module "evdev" (loader failed, 7)
[  3229.664] (EE) No input driver matching `evdev'
[  3229.664] (EE) config/hal: NewInputDeviceRequest failed (15)
[  3229.668] (II) config/hal: Adding input device Macintosh mouse button emulation
[  3229.668] (II) LoadModule: "evdev"
[  3229.669] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3229.669] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3229.669] (II) UnloadModule: "evdev"
[  3229.669] (II) Unloading evdev
[  3229.669] (EE) Failed to load module "evdev" (loader failed, 7)
[  3229.669] (EE) No input driver matching `evdev'
[  3229.669] (EE) config/hal: NewInputDeviceRequest failed (15)
[  3229.673] (II) config/hal: Adding input device Avocent USB Composite Device-0
[  3229.673] (II) LoadModule: "evdev"
[  3229.673] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3229.673] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3229.674] (II) UnloadModule: "evdev"
[  3229.674] (II) Unloading evdev
[  3229.674] (EE) Failed to load module "evdev" (loader failed, 7)
[  3229.674] (EE) No input driver matching `evdev'
[  3229.674] (EE) config/hal: NewInputDeviceRequest failed (15)
.
. More MGA Modeline stuff...
.
[  3249.077] (II) config/hal: Adding input device Avocent Dell 03R874
[  3249.077] (II) LoadModule: "evdev"
[  3249.078] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3249.078] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3249.078] (II) UnloadModule: "evdev"
[  3249.078] (II) Unloading evdev
[  3249.078] (EE) Failed to load module "evdev" (loader failed, 7)
[  3249.078] (EE) No input driver matching `evdev'
[  3249.078] (EE) config/hal: NewInputDeviceRequest failed (15)
[  3249.085] (II) config/hal: Adding input device Avocent Dell 03R874
[  3249.085] (II) LoadModule: "evdev"
[  3249.085] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[  3249.085] (EE) Failed to load /usr/lib64/xorg/modules/input/evdev_drv.so: /usr/lib64/xorg/modules/input/evdev_drv.so: undefined symbol: xf86GetMotionEvents
[  3249.085] (II) UnloadModule: "evdev"
[  3249.085] (II) Unloading evdev
[  3249.085] (EE) Failed to load module "evdev" (loader failed, 7)
[  3249.086] (EE) No input driver matching `evdev'
[  3249.086] (EE) config/hal: NewInputDeviceRequest failed (15)
As you can see it's riddled with errors about the evdev driver. If I check my /usr/lib64/xorg/modules/input directory there is a file called evdev_drv.so so is that driver actually installed or do I need to install it? Any help would be greatly appreciated.

Spunce
 
Old 08-15-2012, 03:00 PM   #3
spunce
LQ Newbie
 
Registered: Aug 2012
Location: WV
Distribution: RHEL 5.6 & CentOS 6.3
Posts: 5

Original Poster
Rep: Reputation: Disabled
bump
 
Old 08-15-2012, 04:53 PM   #4
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Per the LQ Rules, please do not bump your own thread until at least 24 hours have elapsed without a reply. Because the LQ membership is global, people in other time zones may not have seen this post yet, and thus it may take some time before a response is received.
http://www.linuxquestions.org/rules.php

Also, with answering your own thread you have taken it from the Zero Reply List. Threads on the Zero Reply List will automatically be bumped twice, so that unanswered threads get more attention. In future it would be better to add information using the Edit button on your first post.
 
  


Reply

Tags
centos, evdev, keyboard, mouse, xorg



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] after startx keyboard and mouse not working 0zMe Slackware 4 05-17-2012 08:28 AM
Keyboard and Mouse not working in X Karimo Slackware 3 08-21-2009 05:43 PM
Mouse and keyboard not working cgol03 Slackware - Installation 1 02-02-2005 09:05 AM
keyboard not working without mouse RH 7.3 kilobravo Linux - General 1 12-12-2003 09:45 AM
mouse and keyboard not working to_vijayarun General 1 06-30-2001 09:43 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 11:27 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration