I'm trying to install Linux mint on my new ax16 pro laptop but keyboard doesn't work as expected. For every key pressed the character will be printed 8/9 times
I've tried to set rate and delay using Linux utils but this doesn't solve the problem!
To complete distro install I must use external keyboard and then the problem is still present.
This will happened with many Linux distro at their latest version. I've tried Linux mint, Manjaro e elementary os : those distro have keyboard multiptress problem.
Older version (Linux mint 20.3) doesn't have this problem neither windows.
Anyone faced this problem?
Keyboard problem with Linux distro [solved]
Re: Keyboard problem with Linux distro
I haven't seen this before, but other Mint users have experienced it on different systems. I would check on the settings in Mint, like mentioned here: https://forums.linuxmint.com/viewtopic.php?t=172398
GK3V (J4125/8GB/128GB) | AMR5 (R5 5600U/16GB/512GB NVMe) | JK06 (N5100/8GB/256GB) | AK1Pro (N5105/8GB/256GB) | T8Pro (N5095/8GB/256GB) | AD03 (N95/8GB/256GB) | CK10 (i7-10810U/16GB/512GB) | S1 (N95/16GB/512GB)
Re: Keyboard problem with Linux distro
Thanks for your reply, unfortunately it doesn't work
changing rate and delay was my first attempt
changing rate and delay was my first attempt
Re: Keyboard problem with Linux distro
It may be a difference in the drivers between your older Linux distro and your newer one. Can you check what version they're on?
GK3V (J4125/8GB/128GB) | AMR5 (R5 5600U/16GB/512GB NVMe) | JK06 (N5100/8GB/256GB) | AK1Pro (N5105/8GB/256GB) | T8Pro (N5095/8GB/256GB) | AD03 (N95/8GB/256GB) | CK10 (i7-10810U/16GB/512GB) | S1 (N95/16GB/512GB)
Re: Keyboard problem with Linux distro
I would do it willingly but this is not simple task : how can I do that?
You mean lsusb command?
You mean lsusb command?
Re: Keyboard problem with Linux distro
A google search tells me lsmod should help. Sadly, I'm not as familiar troubleshooting Linux issues as I am with Windows, so I'm just using similar troubleshooting methods.
GK3V (J4125/8GB/128GB) | AMR5 (R5 5600U/16GB/512GB NVMe) | JK06 (N5100/8GB/256GB) | AK1Pro (N5105/8GB/256GB) | T8Pro (N5095/8GB/256GB) | AD03 (N95/8GB/256GB) | CK10 (i7-10810U/16GB/512GB) | S1 (N95/16GB/512GB)
Re: Keyboard problem with Linux distro
Solution found!
To make the keyboard works with any linux distro extra kernet param must be added at boot!
So, you must edit grub settings:
and change line
in
then update grub
and reboot
It works like a charm!
To make the keyboard works with any linux distro extra kernet param must be added at boot!
So, you must edit grub settings:
Code: Select all
sudo nano /etc/default/grub
Code: Select all
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Code: Select all
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pnpacpi=off"
Code: Select all
sudo update-grub
It works like a charm!