Announcement

Collapse
No announcement yet.

I'm not really sure...

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    I'm not really sure...

    I keep getting the error in the konsole


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


    anyone know what this means, what its doing, or how i can fix it, I'ld appreciate it.

    #2
    Re: I'm not really sure...

    I think that's because *ubuntu sets up X to support wacom devices by default, and you get these errors if you don't actually have the graphics tablet.

    You can safely ignore them, or if you prefer, sudo kate /etc/X11/xorg.conf and comment out the InputDevice sections that use 'Driver "wacom"', and the lines in the ServerLayout section that refer to them, like this:

    #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

    Section "ServerLayout"
    Identifier "Default Layout"
    Screen 0 "Default Screen"
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    # InputDevice "stylus" "SendCoreEvents"
    # InputDevice "cursor" "SendCoreEvents"
    # InputDevice "eraser" "SendCoreEvents"
    EndSection

    Just remember to uncomment them if you ever get a graphics tablet

    Comment


      #3
      Re: I'm not really sure...

      Thanks, worked like a charm.
      Funny, I thought I had already deleted those.

      Comment

      Working...
      X