我使用的是 ubuntu 16.04,它有 rtl8723be 驱动程序,但没有显示 wifi。我尝试了这些方法1,2。还安装了来自https://github.com/lwfinger/rtlwifi_new.git. 任何线索都会有帮助。
output of lspci -knn | grep Net -A3; rfkill list
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
DeviceName: Sanji2
Subsystem: Hewlett-Packard Company RTL8723BE PCIe Wireless Network Adapter [103c:81c1]
Kernel driver in use: rtl8723be
Kernel modules: rtl8723be
0: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
答案1
第一次尝试:
使用您安装的版本尝试以下命令:
echo "options rtl8723be ant_sel=1" | sudo tee -a /etc/modprobe.d/rtl8723be.conf
sudo modprobe -rf rtl8723be
sudo modprobe -v rtl8723be
检查是否可以找到 wifi。
如果您愿意...只需重新启动就可以了。
在进行第二次尝试之前,请先尝试使用选项ant_sel=2
(并再次尝试所有三个命令)
第二次尝试:
转到已安装包的源文件夹并通过运行命令将其卸载
sudo make uninstall
然后运行:
sudo add-apt-repository ppa:hanipouspilot/rtlwifi
sudo apt-get update
sudo apt-get install rtlwifi-new-dkms
(我认为它与您已经安装的软件包相同,但它适用于我的 16.04,并且它也会接受更新)
再次尝试第一次的所有命令:
echo "options rtl8723be ant_sel=1" | sudo tee -a /etc/modprobe.d/rtl8723be.conf
sudo modprobe -rf rtl8723be
sudo modprobe -v rtl8723be
您应该在最后一个命令后找到 wifi。
如果不尝试ant_sel=2
上述选项并给出所有 (3) 个命令
如果更好的话:
重启并准备就绪。
来源(组合):
https://kharisecario.wordpress.com/2017/03/16/installing-realtek-rtl8723be-wifi-driver-for-debian/
https://ubuntuforums.org/showthread.php?t=2364060&highlight=rtl8723be
https://ubuntuforums.org/showthread.php?t=2363051&highlight=rtl8723be