无法在 debian 10.9 上安装 realtek rtl8723de 驱动程序

无法在 debian 10.9 上安装 realtek rtl8723de 驱动程序

我最近使用非免费的 kde 映像在我的系统上安装了 debian 10.9。正如预期的那样,没有 wifi,所以我必须对其进行配置。我跑步后得到了这个lspci03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723DE 802.11b/g/n PCIe Adapter。然后我发现了这个(Iwfinger/rtw88) 通过 StackExchange 之一的驱动程序答案经过@GAD3R。我按照他提到的步骤进行操作,因为我的内核版本是 4.19,直到遇到此错误:modprobe: FATAL: Module rtw_8723de not found.

他提到的步骤:

sudo apt-get update
sudo apt-get install make gcc linux-headers-$(uname -r) build-essential git

git clone https://github.com/lwfinger/rtw88.git
cd rtw88
make
sudo make install

sudo modprobe -rv rtw_8723de 
sudo modprobe -v rtw_8723de

我认为一切都很顺利sudo make install,直到运行后出现上述错误sudo modprobe -rv rtw_8723de

我现在不知道该怎么办,我真的很想在我的系统上使用 wifi,有线连接对我来说不可靠。

为了更清楚起见,我将从 git clone 命令开始添加整个终端日志。

chirag@debian10:~/Downloads$ git clone https://github.com/lwfinger/rtw88.git
Cloning into 'rtw88'...
remote: Enumerating objects: 481, done.
remote: Counting objects: 100% (481/481), done.
remote: Compressing objects: 100% (291/291), done.
remote: Total 481 (delta 324), reused 343 (delta 190), pack-reused 0
Receiving objects: 100% (481/481), 1.05 MiB | 2.73 MiB/s, done.
Resolving deltas: 100% (324/324), done.
chirag@debian10:~/Downloads$ cd rtw88
chirag@debian10:~/Downloads/rtw88$ make
make -C /lib/modules/4.19.0-16-amd64/build M=/home/chirag/Downloads/rtw88 modules
make[1]: Entering directory '/usr/src/linux-headers-4.19.0-16-amd64'


<<Note: I couldn't show this log here as most of it matches the later part and stackexchange won't let me keep it, as it thinks I am spamming>>


Building modules, stage 2.
  MODPOST 10 modules
  CC      /home/chirag/Downloads/rtw88/rtw_8723d.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8723d.ko
  CC      /home/chirag/Downloads/rtw88/rtw_8723de.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8723de.ko
  CC      /home/chirag/Downloads/rtw88/rtw_8821c.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8821c.ko
  CC      /home/chirag/Downloads/rtw88/rtw_8821ce.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8821ce.ko
  CC      /home/chirag/Downloads/rtw88/rtw_8822b.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8822b.ko
  CC      /home/chirag/Downloads/rtw88/rtw_8822be.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8822be.ko
  CC      /home/chirag/Downloads/rtw88/rtw_8822c.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8822c.ko
  CC      /home/chirag/Downloads/rtw88/rtw_8822ce.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_8822ce.ko
  CC      /home/chirag/Downloads/rtw88/rtw_core.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_core.ko
  CC      /home/chirag/Downloads/rtw88/rtw_pci.mod.o
  LD [M]  /home/chirag/Downloads/rtw88/rtw_pci.ko
make[1]: Leaving directory '/usr/src/linux-headers-4.19.0-16-amd64'
chirag@debian10:~/Downloads/rtw88$ sudo make install
make -C /lib/modules/4.19.0-16-amd64/build M=/home/chirag/Downloads/rtw88 modules
make[1]: Entering directory '/usr/src/linux-headers-4.19.0-16-amd64'
  Building modules, stage 2.
  MODPOST 10 modules
make[1]: Leaving directory '/usr/src/linux-headers-4.19.0-16-amd64'
Making backups
tar: /lib/modules/4.19.0-16-amd64/kernel/drivers/net/wireless/realtek/rtw88: Cannot stat: No such file or directory
tar: Exiting with failure status due to previous errors
make: *** [Makefile:83: install] Error 2
chirag@debian10:~/Downloads/rtw88$ sudo modprobe -rv rtw_8723de
modprobe: FATAL: Module rtw_8723de not found.
chirag@debian10:~/Downloads/rtw88$

如果需要添加更多内容,也请评论。

相关内容