web-dev-qa-db-ja.com

Qualcomm Atheros QCA9377ワイヤレスが14.04.3でレノボで動作しない

助けてください。ubuntu15.10とQualcommアダプターに使用される他の修正を試しましたが、14.04.3を実行するQualcomm Atheros QCA9377ワイヤレスアダプターを搭載したlenovo ideapad 500で何も機能しません。間違った端末コマンドを使用できますか?別の投稿にあるこのコマンドセットを使用しているim:

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

どんな助けも感謝します

2
ubunjz

してみてください:

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

再起動して、動作するかどうかを教えてください。

2
chili555

これが、ラップトップでWiFiの問題を修正した方法です

WiFiデバイスを識別します。ターミナルを開き、以下を発行します。

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)

ネットワークデバイスが上記のものであることを確認したら、以下の手順に従ってWiFi用ドライバーをインストールします##### gitとツールをインストールしてドライバーをコンパイルします。

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

マシンを再起動します。それでおしまい。カーネルの更新を行うまで、WiFiは動作するはずです。

2
Satish Babariya

@joucoski

それは私のAsusラップトップで起こりました、そして、私はこのような何かを試みました、

rfkill list all

次に、次のように表示されます。

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

Acer-wireless:ワイヤレスLANがブロックされているソフトを参照してください?

Sudo modprobe -r Acer-wmi

上記の例のようにWi-Fiがブロックされているかどうかを確認し、端末で上記の最後のSudoを実行した後に「有効」に変更された場合は、Wifiの設定を確認します。

0
Kris