无法从 rtlwifi_new git repo 安装 wifi 驱动程序

无法从 rtlwifi_new git repo 安装 wifi 驱动程序

当我尝试从克隆安装 git 时,它要求输入用户名和密码

git clone https://github.com/lwfinger/rtlwifi_new.git
Cloning into 'rtlwifi_new'...
Username for 'https://github.com':

请帮忙


shdpjjc@shdpjjc-System-Product-Name:~$ rfkill list
shdpjjc@shdpjjc-System-Product-Name:~$ 
shdpjjc@shdpjjc-System-Product-Name:~$ 
shdpjjc@shdpjjc-System-Product-Name:~$ uname -a
Linux shdpjjc-System-Product-Name 4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:26:51 UTC 2018 i686 athlon i686 GNU/Linux
shdpjjc@shdpjjc-System-Product-Name:~$ lspci -knn | grep Net -A3;

以下命令给出空白


rfkill list 
lspci -knn | grep Net -A3


Below solution resolved my problem

I was able to resolve the issue after following this post in https://github.com/kelebek333/rtl8188fu.
https://askubuntu.com/questions/1062402/cant-find-wifi-drivers-for-0bdaf179-realtek-semiconductor-corp


The concern was we were using 0bda:f179 Realtek Semiconductor Corp which requires specific drivers.

Thanks Everyone for the Help :)


答案1

https://github.com/lwfinger/rtlwifi_new.git被移除。

改用https://github.com/lwfinger/rtw88.git

要安装它们,请运行:

sudo apt update
sudo apt install git dkms
git clone https://github.com/lwfinger/rtw88.git
sudo dkms add ./rtw88
sudo dkms install rtlwifi-new/0.6

相关内容