web-dev-qa-db-fra.com

Qualcomm Atheros QCA9377 sans fil ne fonctionne pas sur Lenovo avec 14.04.3

Aide, j'ai essayé les autres correctifs utilisés pour Ubuntu 15.10 et l'adaptateur Qualcomm mais rien ne fonctionne pour mon Lenovo Ideapad 500 avec l'adaptateur sans fil Qualcomm Atheros QCA9377 fonctionnant sous 14.04.3. Pourrais-je utiliser les mauvaises commandes de terminal? im en utilisant cet ensemble de commandes trouvé dans un autre 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

toute aide appréciée

2
ubunjz

S'il vous plaît essayez:

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

Redémarrez et dites-nous si cela fonctionne.

2
chili555

Voici comment j'ai résolu le problème de WiFi dans mon ordinateur portable

Identifiez votre appareil WiFi. Ouvrir un terminal et émettre:

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)

Une fois que vous vous êtes assuré que le périphérique réseau est celui ci-dessus, suivez les étapes ci-dessous pour installer le pilote pour le WiFi ##### Installez git et des outils pour compiler le pilote:

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

Redémarrez votre machine. C'est tout. Votre WiFi devrait fonctionner maintenant jusqu'à ce que vous fassiez une mise à jour du noyau.

2
Satish Babariya

@joucoski

C'est arrivé sur mon ordinateur portable Asus et j'ai essayé quelque chose comme ça,

rfkill list all

Ensuite, il affichera quelque chose comme ceci:

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

Voir Acer-wireless: le réseau local sans fil a un logiciel bloqué?

Sudo modprobe -r Acer-wmi

Vérifiez si le wifi est bloqué, comme dans l'exemple ci-dessus, et vérifiez votre réglage sur Wifi, s'il passe à "Activé" après avoir effectué le dernier Sudo ci-dessus sur le terminal.

0
Kris