LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 08-27-2019, 10:22 AM   #1
SanmayJoshi
LQ Newbie
 
Registered: Aug 2019
Posts: 4

Rep: Reputation: Disabled
Question USB keyboard works in GRUB but stops working once OS booted


Problem:

I have an Acer USB keyboard. It works in grub menu, but not when the OS has booted. It used to work on Windows 7.

Additional info:

1. The USB keyboard is recognized. Here is output of `lsusb` before connecting it:
Code:
    joshi@joshi-Lenovo-Z50-70:~$ lsusb
    Bus 001 Device 002: ID 8087:8000 Intel Corp. 
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 002 Device 005: ID 0bda:b728 Realtek Semiconductor Corp. 
    Bus 002 Device 004: ID 5986:055e Acer, Inc 
    Bus 002 Device 003: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
    Bus 002 Device 002: ID 0461:4e54 Primax Electronics, Ltd 
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Output of `lsusb` after connecting it:
Code:
    joshi@joshi-Lenovo-Z50-70:~$ lsusb
    Bus 001 Device 002: ID 8087:8000 Intel Corp. 
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 002 Device 005: ID 0bda:b728 Realtek Semiconductor Corp. 
    Bus 002 Device 004: ID 5986:055e Acer, Inc 
    Bus 002 Device 003: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
    Bus 002 Device 002: ID 0461:4e54 Primax Electronics, Ltd 
    Bus 002 Device 006: ID 04a5:0001 Acer Peripherals Inc. (now BenQ Corp.) Keyboard
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
See `Bus 002 Device 006`.

2. I have tried Pop! OS, KDE Neon, and Kubuntu with same result. I am on Kubuntu 19.04, backports PPA enabled.

3. Model no.: E511-PU | Extension no.: 41 | Serial no.: 99P108

Help is highly appreciated!

Last edited by SanmayJoshi; 09-08-2019 at 10:07 AM. Reason: improve title
 
Old 08-27-2019, 01:02 PM   #2
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Does the keyboard work at all?

"Acer Peripherals Inc. (now BenQ Corp.) Keyboard" sounds kindof old.
 
Old 08-27-2019, 01:54 PM   #3
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 4,001
Blog Entries: 33

Rep: Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471
SanmayJoshi,

Welcome to LQ.

Borrow a functioning USB keyboard, open Terminal (hold down Ctrl+ Alt + T) and type the following command:

Code:
sudo apt install --reinstall xserver-xorg-input-all
Press the Enter key.

Type your password and press Enter.

Wait for the process to finish.

Then try your Acer keyboard.

If there is no change you may then need to open Terminal and repeat the process using this command:

Code:
sudo apt --purge autoremove xserver-xorg-input-all && sudo apt install xserver-xorg-input-all
Please type very carefully.

An alternative to using a different keyboard is to boot from your Ubuntu live DVD and select Try Ubuntu.

The live DVD username is ubuntu.

The password is left blank (i.e. zero, nothing, totally empty).

Just press Enter. Do not type anything for the password.

Then open a Terminal using Ctrl+ Alt + T and proceed as above.

Last edited by beachboy2; 08-27-2019 at 02:04 PM.
 
Old 08-28-2019, 06:31 AM   #4
SanmayJoshi
LQ Newbie
 
Registered: Aug 2019
Posts: 4

Original Poster
Rep: Reputation: Disabled
@ondoho Yes, the keyboard is fully functional; it is just not working on current system.

@beachboy2 I had in fact tried
Code:
sudo apt install --reinstall xserver-xorg-input-all
I will give
Code:
sudo apt --purge autoremove xserver-xorg-input-all && sudo apt install xserver-xorg-input-all
a try and let you know here. Also, I am using Lenovo Z50 laptop, so I have a functional keyboard, hence can type commands. It has been my habit to use the USB keyboard, and I would really really appreciate if it works again.

I think it might very likely be a BIOS problem, I checked the USB keyboard some time ago in friend's netbook (Acer EeePC 1015CX), which has Lubuntu 18.04 LTS 32bit, and it worked quite fine. Any ideas?
 
Old 08-28-2019, 07:25 AM   #5
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 4,001
Blog Entries: 33

Rep: Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471
It would be a good idea to check the BIOS settings and make sure that USB keyboard is enabled.

NB If it is anything like installing a new network card in a Gigabyte motherboard, it is necessary to first disable the existing onboard card otherwise the new card will not be recognised.
You may well need to first disable the existing default keyboard and then enable the new one.

Last edited by beachboy2; 08-28-2019 at 08:08 AM.
 
Old 08-28-2019, 10:18 AM   #6
SanmayJoshi
LQ Newbie
 
Registered: Aug 2019
Posts: 4

Original Poster
Rep: Reputation: Disabled
Code:
sudo apt --purge autoremove xserver-xorg-input-all && sudo apt install xserver-xorg-input-all
didn't do the trick.

Will try to tweak BIOS.
 
Old 09-01-2019, 05:19 AM   #7
SanmayJoshi
LQ Newbie
 
Registered: Aug 2019
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by SanmayJoshi View Post
Code:
sudo apt --purge autoremove xserver-xorg-input-all && sudo apt install xserver-xorg-input-all
didn't do the trick.

Will try to tweak BIOS.
I was on UEFI boot mode. As the keyboard is working on Asus Eee PC 1015CX (which doesn't have UEFI mode), I thought I should try disabling UEFI and turn Legacy mode on (in BIOS) and set USB Legacy support to on. But that didn't do anything. The result is same as before, output of lsusb is same as before (for both before and after connecting the USB keyboard). I couldn't find any other options that relate to USB in BIOS.

Well, the keyboard works great in GRUB menu. So, what could cause it to stop working when the OS has booted? Driver problems? If so, are there any solutions? Please help.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
my keyboard/trackpad aren't working on acer chromebook 14 Nimkora Ubuntu 10 05-18-2018 07:20 PM
Acer R 13 keyboard not working after installation at first login ByTheSeaside Slackware 3 07-06-2016 03:11 PM
hp wireless keyboard & mouse, keyboard works, mouse do not work not working john hughes Linux - Desktop 2 04-04-2016 11:00 AM
NumLock issue with a USB keyboard on my Acer TravelMate laptop Iltbreg Linux - Laptop and Netbook 3 12-01-2008 12:17 PM
ACPI power off works with PS/2 keyboard but not with USB keyboard mrwaters Linux - Hardware 5 10-05-2006 05:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 09:07 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration