X: BadDevice, invalid or uninitialized input device 154
From FVue
Problem
When starting gVim, this error shows twice:
X Error: BadDevice, invalid or uninitialized input device 154 Major opcode: 143 Minor opcode: 3 Resource id: 0x0 Failed to open device
Solution
Check file /etc/X11/xorg.conf
:
1. I had created a Section "InputDevice"
for my Wacom tablet, but had the tablet unplugged. I commented this InputDevice "Wacom"
in the Section "ServerLayout"
:
Section "ServerLayout" Identifier "Layout[all]" InputDevice "Keyboard[0]" "CoreKeyboard" InputDevice "Mouse[1]" "CorePointer" #InputDevice "Wacom" Option "Clone" "off" Option "Xinerama" "off" Screen "Screen[0]" EndSection
2. While experimenting with the Wacom tablet I commented all InputDevices
. Make sure the InputDevices in the Section "Files"
are not commented. Mine currently looks like this:
Section "Files" ... # FontPath specifications InputDevices "/dev/ttyS0" InputDevices "/dev/ttyS1" InputDevices "/dev/ttyS2" InputDevices "/dev/ttyS3" InputDevices "/dev/ttyS4" InputDevices "/dev/ttyS5" InputDevices "/dev/ttyS6" InputDevices "/dev/ttyS7" InputDevices "/dev/ttyS8" InputDevices "/dev/psaux" InputDevices "/dev/logibm" InputDevices "/dev/sunmouse" InputDevices "/dev/atibm" InputDevices "/dev/amigamouse" InputDevices "/dev/atarimouse" InputDevices "/dev/inportbm" InputDevices "/dev/gpmdata" InputDevices "/dev/mouse" InputDevices "/dev/usbmouse" InputDevices "/dev/adbmouse" InputDevices "/dev/input/mice" InputDevices "/dev/input/event0" InputDevices "/dev/pointer0" InputDevices "/dev/pointer1" InputDevices "/dev/pointer2" InputDevices "/dev/pointer3" EndSection
Advertisement