IlPuntoTecnico
Hardware e Software => Hardware e Software => Linux => Topic aperto da: lmp93 - 09 Marzo 2019, 13:00
-
Salve a tutti, ieri ho installato su un acer aspire es15 Lubuntu ma il trackpad non funziona devo per forza itilizzare un mouse usb esterno, suggerimenti? Grazie...
-
@lmp93
con la distro di ubuntu ti funziona? ad ogni modo prova una di queste due vie:
You can use the Trackpad on the Acer Aspire ES15 if you enter the BIOS by holding F2 at startup and changing the Trackpad setting from Advanced to Basic under the Main tab. This solved my issue with the Trackpad. Now I'm exploring why the BIOS is preventing Ubuntu from booting from an external drive - I believe the secure boot option is responsible.
For command line, you can run below commands one by one to download and install the new kernel:
1. For 32-bit system:
cd /tmp/
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600-generic_3.16.0-031600.201408031935_i386.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600_3.16.0-031600.201408031935_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-image-3.16.0-031600-generic_3.16.0-031600.201408031935_i386.deb
sudo dpkg -i linux-headers-3.16.0-*.deb linux-image-3.16.0-*.deb2. For 64-bit system:
cd /tmp/
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600-generic_3.16.0-031600.201408031935_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600_3.16.0-031600.201408031935_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-image-3.16.0-031600-generic_3.16.0-031600.201408031935_amd64.deb
sudo dpkg -i linux-headers-3.16.0-*.deb linux-image-3.16.0-*.deb
Reboot and done.
If for some reason this kernel release doesn’t work properly for you, reboot into previous kernel (Grub -> Advanced -> select previous kernel) and run this command to remove Linux Kernel 3.16:
sudo apt-get remove linux-headers-3.16.0-* linux-image-3.16.0-*Finally update grub menu:
sudo update-grub
-
Si infatti era da cambiare l'impostazione del bios. Grazie...
-
Bene, contento che ora sia funzionante :)