2

I succesfully installed my dualboot Ubuntu (the main OS is W10) today after updating my bios on my laptop. My laptop is a Lenovo Yoga 720-15IKB.

I discovered that my touchpad isn't working and neither is my bluetooth mouse (Microsoft Designer). I was running Kernel 4.10. The system could find my mouse at first, try to connect to it and then give an error that it failed to set the connection up.

I decided to give a newer kernel a try and upgraded my kernel to 4.13 and I'm running that succesfully now. The touchpad is still not working and neither is the bluetooth mouse.

At least my touch screen is working properly, but I'd really like to have the touchpad and bluetooth working as well as I can't be arsed carrying a wired mouse with me everywhere...

I tried running inxi and here's the pastebin from that: https://pastebin.com/DWDASqnQ

Any tips on what I should try to fix it?

Edit: The Kernel found in here did not work.

rubo77
  • 32,486
F4irline
  • 21
  • 4
  • 1
  • 1
    The touchpad issue will be fixed soon in a new kernel upgrade of native Ubuntu kernels. – Pilot6 Sep 16 '17 at 12:39
  • The bluetooth issue is another issue for another question. – Pilot6 Sep 16 '17 at 12:40
  • The Kernel module did not fix it for me. Secure Boot was disabled as well. – F4irline Sep 16 '17 at 13:03
  • The module won't work with the 4.13 anyway. There is a link to a kernel with the fix. – Pilot6 Sep 16 '17 at 13:04
  • I installed the Kernel with the fix, still not working unfortunately. :( – F4irline Sep 16 '17 at 13:21
  • If you are sure that you booted with that kernel, then it is another issue. – Pilot6 Sep 16 '17 at 13:42
  • Atleast typing "uname -r" in Terminal returns with "4.12.0-11-generic". I'm a newbie with Ubuntu though, so I can't guarantee that I installed the Kernel right... Basically I just typed "sudo dpkg -i [.deb file path here]" for all 4 files, then updated grub and restarted my laptop, I guess that's how it's done? – F4irline Sep 16 '17 at 13:44
  • It looks correct. You can file another bug report to Launchpad. You need to boot with the official kernel and run ubuntu-bug linux. – Pilot6 Sep 16 '17 at 13:46
  • About the Bluetooth issue, there seems to be a general problem with kernel 4.13: https://duckduckgo.com/?q=linux+kernel+4.13+bluetooth+not+working&t=canonical&ia=web

    I have Ubuntu 16.04 and it does not work for me anymore. Reverting to an older kernel is a work-around for now.

    – MakisH Jan 11 '18 at 09:51

1 Answers1

0

I also managed to install Ubuntu on the yoga 720 and wrote a thorough install guide.

To get the touchpad running you have to install a newer kernel, at least the kernel 4.14-rc5 (4.14 will be released in November 2017).

I installed the latest kernel with this script and got the touchpad running, but then at first the networking will be broken due to a bug in the apparmor settings, you can fix this by

sudo apt install apparmour-utils
sudo aa-complain /etc/apparmor.d/sbin.dhclient

(source: https://unix.stackexchange.com/questions/397708)

rubo77
  • 32,486