Debian Jessie で Wi-Fi が機能しない

Debian Jessie で Wi-Fi が機能しない

Acer E5 575GラップトップのWiFiドライバに問題があります。私は手動でドライバをインストールしようとしまし
たが、gitから手動でドライバをインストールしようとしましたが、 成功しませんでした。apt install firmware-realtekapt install firmware-atheros

有用な情報:

neisor@debianneisor:~$ lspci
00:00.0 Host bridge: Intel Corporation Device 1904 (rev 08)
00:02.0 VGA compatible controller: Intel Corporation Device 1916 (rev 07)
00:14.0 USB controller: Intel Corporation Device 9d2f (rev 21)
00:14.2 Signal processing controller: Intel Corporation Device 9d31 (rev 21)
00:15.0 Signal processing controller: Intel Corporation Device 9d60 (rev 21)
00:16.0 Communication controller: Intel Corporation Device 9d3a (rev 21)
00:17.0 SATA controller: Intel Corporation Device 9d03 (rev 21)
00:1c.0 PCI bridge: Intel Corporation Device 9d10 (rev f1)
00:1d.0 PCI bridge: Intel Corporation Device 9d18 (rev f1)
00:1d.2 PCI bridge: Intel Corporation Device 9d1a (rev f1)
00:1d.3 PCI bridge: Intel Corporation Device 9d1b (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device 9d48 (rev 21)
00:1f.2 Memory controller: Intel Corporation Device 9d21 (rev 21)
00:1f.3 Audio device: Intel Corporation Device 9d70 (rev 21)
00:1f.4 SMBus: Intel Corporation Device 9d23 (rev 21)
01:00.0 3D controller: NVIDIA Corporation Device 179c (rev a2)
03:00.0 Network controller: Qualcomm Atheros Device 0042 (rev 31)
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5287 (rev 01)
04:00.1 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12)

neisor@debianneisor:~$ uname -a
Linux debianneisor 3.16.0-4-amd64 #1 SMP Debian 3.16.39-1+deb8u2 (2017-03-07) x86_64 GNU/Linux

root@debianneisor:/home/neisor# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.7 (jessie)
Release:        8.7
Codename:       jessie

明確に言えば、イーサネットアダプタは動作しますが、WiFiは動作しません。もう一つのことは、私のWiFiが常にFedoraとUbuntuで基本的に動作することです。

Debianでどのように修正できるかを知っていますか?

ありがとうございます。

ベストアンサー1

このath10kドライバはdebian jessieでは使用できません。バックポートからインポートする必要があります。

次の行を次の行に追加します/etc/apt/sources.list

deb http://httpredir.debian.org/debian jessie-backports main contrib non-free

バックポートで新しいカーネルを検索してインストールします。

apt-cache search linux-image
apt-get install linux-image-xxx
apt-get install linux-headers-xxx

再起動してインストールしてくださいfirmware-atherosバックポートされた場所:

apt-get update
apt-get -t jessie-backports install firmware-atheros
modprobe ath10k

おすすめ記事