0

I got a Lenovo Yoga 3 11 and installed Ubuntu 15.10 trouble is

  • no wifi
  • no ethernet (computer is too thin)

I've heard this is a very specific bug. After some reading I have a Qualcomm Atheros Device but forget the exact number. Other questions address the Broadcom case.

After downloading the CD image, I installed a dual boot partition with Windows 10 and Lenovo has the wireless driver for Windows.

Writing this question from my phone will continue to supply more details.


https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1436940

Ubuntu 14.04 Wireless not working: no network interface. Atheros [168c:003e] device (solution was to upgrade to 15.10)

No WiFi on Lenovo Yoga 3


lspci -nn | grep 0280
02:00.0 Network controller [0280]: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter [168c:003e] (rev 20)


ath10k

https://github.com/kvalo/ath10k-firmware ath10k installation

I have no idea what these do or if they are correct

One possible hardware solution is usb ethernet adaptor but guess what? No internet no cd rom so i can't download http://www.asix.com.tw/products.php?op=pItemdetail&PItemID=86;71;101&PLine=71


dpkg -l | grep "linux-firmware"
ii linux-firmware 1.149 all Firmware for Linux kernel drivers
john mangual
  • 674
  • 5
  • 10
  • 19

2 Answers2

2

Your wireless driver requires firmware that is not installed by default. Please download this file on some other computer and transfer it with a flash drive or similar: http://archive.ubuntu.com/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.149.3_all.deb

Transfer it to the Ubuntu computer and drag and drop it to the desktop. Now, on the Ubuntu computer, open a terminal and do:

cd ~/Desktop
sudo dpkg -i linux*.deb

After it is done, please do:

sudo modprobe -r ath10k_pci
sudo modprobe ath10k_pci

Your wireless should be working but it might take a reboot.

chili555
  • 60,188
0

The wireless adapter is probably blocked by the platform driver.

You can fix it by running

sudo modprobe -r ideapad_laptop
sudo rfkill unblock all

This should unblock it until a reboot.

To make it permanent you can run

sudo tee /etc/modprobe.d/blacklist-ideapad.conf <<< "blacklist ideapad_laptop"

This will permanently disable the platform driver.

A better solution is to report a bug to launchpad by running:

ubuntu-bug linux

and add there output of

sudo dmidecode | grep "System Information" -A8

If you drop a link to the bug report, I will be able to take care of it.

The issue has been fixed upstream, but it needs to be backported to the current Ubuntu kernels.

Pilot6
  • 90,100
  • 91
  • 213
  • 324