O dispositivo wifi Lenovo Legion Y720 não está pronto. Ubuntu 14.04

0

Acabei de instalar o 14.04. Eu estava tendo um problema onde quando eu fiz rfkill list all mostrou que havia um bloqueio duro no ideapad wifi. Então eu segui uma solução para bloquear o módulo idepad_laptop Wifi não funciona em ubuntu fresco 16.04

Agora, o menu do gerenciador de rede mostra que o dispositivo wifi não está pronto. O que devo fazer?

ifconfig 
eth0      Link encap:Ethernet  HWaddr 54:e1:ad:43:5d:49
          inet addr:137.148.94.131  Bcast:137.148.94.255  Mask:255.255.255.0
          inet6 addr: fe80::56e1:adff:fe43:5d49/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:14691 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9057 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:12612219 (12.6 MB)  TX bytes:1430682 (1.4 MB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:1781 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1781 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:183101 (183.1 KB)  TX bytes:183101 (183.1 KB)

iwconfig 
lo        no wireless extensions.

wlan0     IEEE 802.11abgn  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=0 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
           eth0      no wireless extensions.

Você pode ver abaixo que ideapad_wlan e ideapad_bluetooth não aparecem mais

rfkill list
0: hci0: Bluetooth
    Soft blocked: yes
    Hard blocked: no
1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

.

02:00.0 Network controller [0280]: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter [168c:003e] (rev 32)
    Subsystem: Lenovo Device [17aa:0827]
    Kernel driver in use: ath10k_pci

quando eu faço demsg ele mostra um monte de mensagens mostrando isso

...
[ 2057.256949] ath10k_pci 0000:02:00.0: could not suspend target (-11)
[ 2062.604694] ath10k_pci 0000:02:00.0: failed to enable dynamic BW: -11
[ 2068.605202] ath10k_pci 0000:02:00.0: could not suspend target (-11)
[ 2073.952924] ath10k_pci 0000:02:00.0: failed to enable dynamic BW: -11
[ 2079.953063] ath10k_pci 0000:02:00.0: could not suspend target (-11)
[ 2085.305212] ath10k_pci 0000:02:00.0: failed to enable dynamic BW: -11
[ 2091.305695] ath10k_pci 0000:02:00.0: could not suspend target (-11)
[ 2096.657808] ath10k_pci 0000:02:00.0: failed to enable dynamic BW: -11
    
por Sujaymanb 30.07.2017 / 21:42

1 resposta

0

Por favor, tente adicionar um parâmetro de driver:

sudo -i
echo "options ath10k_core skip_otp=y" >  /etc/modprobe.d/ath10k_core.conf
exit

Atualize também o firmware:

wget http://security.ubuntu.com/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.164.1_all.deb
sudo dpkg -i linux*.deb

Reinicie e deixe-nos ouvir o resultado.

    
por chili555 31.07.2017 / 01:05