1

I have this brand new backlight keyboard (Seisa DN-V710), the first time I plugged in (USB) all the fancy light and keys looks fine. In a very short time I notice both, Ctrl and Alt function as Shift (Ctrl+C = C capital)

I tried to search how to change the driver, the layout, etc. But all my efforts ended when I look up the xev, the shift key; the control key and the alt key are mapped with "keycode 50"

Please, I don't know what else have to do, and I really like this keyboard...

A.B.
  • 90,397

2 Answers2

0

Here is a manual approach that might fix this:

Type command xmodmap and find the offending modifiers (for example, control and mod1)

You can clear and reassign to the right keys like this:

For control:

xmodmap -e 'clear control'
xmodmap -e 'add control = Control_L'
xmodmap -e 'add control = Control_R`

and for alt(if alt is mod1):

xmodmap -e 'clear mod1'
xmodmap -e 'add mod1 = Alt_L'
xmodmap -e 'add mod1 = Alt_R'

If this works, making changes persistent can be done according to this post.

0

If all these keys are mapped to the same keycode, the Linux kernel cannot distinguish between them and you should contact the hardware vendor about this...

Fabby
  • 34,259
  • Or a new and better keyboard. =) – A.B. Sep 21 '15 at 11:36
  • 1
    It's working on Windows... – Andres Jalinton Sep 30 '15 at 01:40
  • Yeah, but they probably have a proprietary driver for Windows... So if they didn't keep to the AT standard and need a special HID driver, you still need to contact the vendor to get the exact key-codes to write your own module (=open speak for "driver") or have them get you one – Fabby Sep 30 '15 at 12:19