web-dev-qa-db-ja.com

Qualcomm Atheros Device [168c:0042](rev 30)Wi-Fiドライバーのインストール

Acerラップトップを購入し、Ubuntu 14.04LTSをインストールしましたが、WiFiドライバーは使用できません。だから、wifidocs/driver/ndiswrapperを使用してWindowsドライバーをインストールしようとしています。

lspci -vvnnを実行すると、次の結果が得られます。

Network controller [0280: Qualcomm Atheros Device [168c:0042] (rev 30)

その後、アテロームドライバーも無効にしました。 lspcilspci -nを使用すると、PCI IDは168c:0042と言えます。ただし、AcerのWebサイトには3つのアテロームドライバーがあります。どのファイルをダウンロードするのかわかりませんでしたが、Windows PCにダウンロードし、デスクトップにZipファイルを貼り付け、unzip <filename>.Zipを使用してターミナルから解凍しました。このページには、コントロールパネルシステムのハードウェアと、Windowsシステムのすべてにアクセスする必要があると書かれています。私はそれをしませんでした。私のWindowsコンピューターではないので、追加のドライバーをインストールしないでください。解凍後、1つの.inxファイルと1つの.binファイルがありますが、.sysファイルはありません。ここまで完全に正しいのか、何かを見逃したのかわかりません。そして、私が正しいなら、ここからどのように進むのですか?また、新しいディレクトリを作成し、その中の解凍された.inxおよび.binファイルをコピーしました。次に、そのディレクトリでndiswrapper -i <filename>.infを実行しましたが、ndiswrapperがインストールされていないと表示され、Sudo apt-get install ndiswrapper-commonを実行すると、ndiswrapper-commonはすでに最新バージョンであるという応答が返されます。何をすべきか?ここに私の

dmesg | grep ath10k result 
[   7.882758] ath10k_pci 0000:03:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[    8.190016] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/cal-pci-0000:03:00.0.bin failed with error -2
[    8.334587] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/board-2.bin failed with error -2
[   10.140677] ath10k_pci 0000:03:00.0: qca9377 hw1.0 (0x05020000, 0x003820ff sub 105b:e09a) fw WLAN.TF.1.0-00267-1 fwapi 5 bdapi 1 htt-ver 3.1 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1 features ignore-otp
[   10.140682] ath10k_pci 0000:03:00.0: debug 0 debugfs 0 tracing 0 dfs 0 testmode 0
lspci -nnk | grep -iA2 net


02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 15) Subsystem: Acer Incorporated [ALi] Device [1025:098a] Kernel driver in use: r8169 03:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30) Subsystem: Foxconn International, Inc. Device [105b:e09a] Kernel driver in use: ath10k_pci
18
gunjit

Ubuntu 16.04ユーザーは、次のことを行う必要があります。

Sudo apt-get update && Sudo apt-get upgrade

そして再起動します。


Windowsドライバーとndiswrapperは必要ありません。

これは最近アップストリームで修正されました。次の手順に従って、バックポートされたモジュールと必要なファームウェアをインストールしてください。

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 https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v4.4.2/backports-4.4.2-1.tar.gz
tar -zxvf backports-4.4.2-1.tar.gz
cd backport-4.4.2-1
make defconfig-wifi
make
Sudo make install
git clone https://github.com/kvalo/ath10k-firmware.git
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をサポートするようにパッチが適用されるまで、更新を通じて新しいカーネルがインストールされると失敗します。その場合、次のことを行う必要があります。

cd backports-4.4.2-1
make clean
make defconfig-wifi
make
Sudo make install

そして再起動します。

30
Jeremy31