Qualcomm Atheros QCA9377 wireless não funciona no lenovo com 14.04.3

2

Ajuda, eu tentei as outras correções usadas para o ubuntu 15.10 e o adaptador Qualcomm, mas nada está funcionando para o meu ideapad 500 da Lenovo com o adaptador sem fio Qualcomm Atheros QCA9377 executando 14.04.3. Eu poderia estar usando os comandos do terminal errado? estou usando este conjunto de comandos encontrados em outro post:

sudo apt-get install build-essential linux-headers-$(uname -r) git
echo "options ath10k_core skip_otp=y" | sudo tee /etc/modprobe.d/ath10k_core.conf
wget http://filebin.ca/2LVgpjSgiT56/backp...-11-05.tar.bz2
unzip backp...-11-05.tar.bz2
cd backports-ath10k-2015-11-05
make defconfig-ath10k
make
sudo make install
git clone https://github.com/kvalo/ath10k-firmware.git
sudo cp -r ath10k-firmware/ath10k/ /lib/firmware/
sudo cp -r ath10k-firmware/QCA9377 /lib/firmware/ath10k/
cp firmware-5.bin_WLAN.TF.1.0-00267-1 firmware-5.bin
Reboot

qualquer ajuda apreciada

    
por ubunjz 23.11.2015 / 03:51

3 respostas

2

Por favor, tente:

sudo apt-get update
sudo apt-get install linux-headers-generic build-essential
wget https://www.kernel.org/pub/linux/kernel/projects/backports/2015/11/20/backports-20151120.tar.gz
tar -zxvf backports-20151120.tar.gz
cd backports-20151120
make defconfig-ath10k
make
sudo make install

Reinicie e diga se está funcionando.

    
por chili555 25.11.2015 / 17:59
2

Foi assim que consertei o problema do WiFi no meu laptop

Identifique seu dispositivo WiFi. Abra um terminal e edite:

lspci  | grep Network
# It should display the name of your WiFi card
# If the output is similar to the one below, you are in luck, we can fix this easily
mansoor ~ $ lspci  | grep Network
03:00.0 Network controller: Qualcomm Atheros Device 0042 (rev 30)

Depois de ter certeza de que o dispositivo de rede é o acima, siga os passos abaixo para instalar o driver para WiFi ##### Install git e ferramentas para compilar o driver:

sudo apt-get install build-essential linux-headers-$(uname -r) git
Issue the following commands one by one. Anything written after "#" is a comment and you don't have to execute it.

# Modify the config files
echo "options ath10k_core skip_otp=y" | sudo tee /etc/modprobe.d/ath10k_core.conf

# Download the backport
wget https://www.kernel.org/pub/linux/kernel/projects/backports/2015/11/20/backports-20151120.tar.gz

# Extract it
tar zxvf backports-20151120.tar.gz

# cd to the directory, compile and install it. The commands 'make' and 'make install' will take some time to finish
cd backports-20151120
make defconfig-wifi
make
sudo make install

# Download the firmware for the WiFi card
git clone https://github.com/kvalo/ath10k-firmware.git

# Copy the firmware to appropriate locations. 
sudo cp -r ath10k-firmware/QCA9377 /lib/firmware/ath10k/
sudo cp /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin_WLAN.TF.1.0-00267-1 /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin

Reinicialize sua máquina. É isso aí. Seu WiFi deve funcionar agora até que você faça uma atualização do kernel.

    
por Satish Babariya 30.06.2016 / 17:58
0

@joucoski

Aconteceu no meu laptop Asus e eu tentei algo assim,

rfkill list all

Em seguida, ele mostrará algo assim:

0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
2: acer-wireless: Wireless LAN
Soft blocked: yes
Hard blocked: no

Veja o acer-wireless: a LAN sem fio tem um Soft bloqueado? Então, faça isso

sudo modprobe -r acer-wmi

Verifique se há um wifi bloqueado, como o exemplo acima, e verifique sua configuração no Wifi, se ele for alterado para "Ativado" depois que você fizer o último sudo acima no terminal.

    
por Kris 02.01.2016 / 05:49