PDA

View Full Version : is it a input problem?



gogo_tutu
Apr 24th 2006, 05:15 AM
when i start the program kate and kcontrol and kaffeine from the kconsole,
the console always display this :


X Error: BadDevice, invalid or uninitialized input device 168
Major opcode: 148
Minor opcode: 3
Resource id: 0x0
Failed to open device
X Error: BadDevice, invalid or uninitialized input device 168
Major opcode: 148
Minor opcode: 3
Resource id: 0x0
Failed to open device

so,how does this mean,is it the input problem?how can i fix it?

warbuckle
Apr 24th 2006, 01:53 PM
is this done as root?


sudo kcontrol

endeavor
Apr 26th 2006, 12:11 AM
I get that error also. The way I solved it is to edit the xorg.conf file and remove the following lines:


Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection


and


InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"

warbuckle
May 2nd 2006, 01:21 PM
I get a simliar issue, but the proggies open and work fine, so I do not worry about it too much


Will