Linux

如何在 Linux 上安裝 WiFi 和藍牙驅動程序?

  • February 18, 2019

我最近買了一台新的惠普筆記型電腦。WiFi 和藍牙在 Windows 10 中開箱即用,但在 Manjaro Linux 17 中卻不行。我正在執行 Kernel 4.14 LTS。

要檢查安裝了哪個網路控制器,我使用了以下命令

lspci -knn | grep Net -A2

輸出:

02:00.0 網路控制器

$$ 0280 $$: Realtek Semiconductor Co., Ltd. RTL8723DE 802.11b/g/n PCIe 適配器$$ 10ec:d723 $$ 設備名稱:WLAN 子系統:惠普公司設備$$ 103c:8319 $$

我建議使用 Manjaro 設置管理器更新您的核心。

適用於 Linux 核心版本 >= 4.15 的 Realtek RTL8723DE 模組

安裝:

git clone https://github.com/dhatwalia/rtl8723de.git -b 4.15-up
dkms add ./rtl8723de
dkms install rtl8723de/5.1.1.8_21285.20171026_COEX20170111-1414
depmod -a
reboot

解除安裝:

rmmod -f 8723de
dkms uninstall rtl8723de/5.1.1.8_21285.20171026_COEX20170111-1414
dkms remove rtl8723de/5.1.1.8_21285.20171026_COEX20170111-1414 --all
depmod -a
reboot

引用自:https://unix.stackexchange.com/questions/501289