0

CTRL and ALT works as SHIFT?

I was following the answer to this question, as I myself was having a similar issue with my Gamdias keyboard. Unfortunately, not only did it not work, now the entire keyboard doesn't work (not even the NUM LOCK key light changes, the keys light up though).

What could I do to undo any changes done?

I am running 14.04.

Amias
  • 5,359

1 Answers1

2

I can tell you how to revert the changes described in this answer:

  1. Unload the aziokbd kernel module:

    sudo modprobe -r aziokbd
    sudo dkms remove -m aziokbd -v 1.0.0
    
  2. Remove /etc/modprobe.d/usbhid.conf:

    sudo rm /etc/modprobe.d/usbhid.conf
    
  3. Edit /etc/default/grub with your favourite text editor as super-user and remove the usbhid.quirks=0x0c45:0x7603:0x4 from the variable GRUB_CMDLINE_LINUX_DEFAULT.

  4. Update Grub:

    sudo update-grub        
    
  5. Reboot.

This will revert the changes however I can't tell if this will resolve your issue since I'm not sure by what it's caused.

David Foerster
  • 36,890
  • 56
  • 97
  • 151