0

I have installed Ubuntu 16.04.6 version on Lenovo IdeaPad 3 14IIL05, After installation laptop's keyboard, touchpad and WiFi are not working. I reinstalled xserver-xorg-input-all package and also updated the kernel version but still facing the same issue. I have executed xinput command, touchpad and keyboard are not detecting.

Bala
  • 1

2 Answers2

0

You can go to "Software & Updates" and then additional drivers tab to check which drivers are needed to be installed.

Or you can use this command to get a list of available drivers:

sudo ubuntu-drivers devices

You can install them manually, or you can use:

sudo ubuntu-drivers autoinstall 
  • 1
    I checked in Software & Updates but it showing No additional drivers are available. Also executed autoinstall command but No drivers found for automatic installation. – Bala Aug 13 '20 at 14:59
0

In order to fix the touchpad:

sudo gedit /etc/default/grub

Replace line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" with GRUB_CMDLINE_LINUX_DEFAULT="pci=nocrs quiet splash"

Save file /etc/default/grub

Execute sudo update-grub

Reboot.

This is commented here:

lenovo IdeaPad-3-14ARE05 Touchpad not working. Ubuntu 20.04

ChanganAuto
  • 1,670
  • 8
  • 14
  • 21