红联Linux门户
Linux帮助

Ubuntu下对与rtl8723be网卡频繁断网问题解决

发布时间:2016-10-16 09:26:28来源:linux网站作者:HelloHackers
linux下对于rtl系列的无线网卡,大多数网友都在吐槽,总是频繁的掉网,就此将自己在网上安装时的经验写下。
 
1.下载网卡驱动,其中包含rtl的大多数包
sudo apt-get install linux-headers-generic build-essential git
git clone https://github.com/lwfinger/rtlwifi_new
cd rtlwifi_new
sudo make install
sudo modprobe rtl8723be
 
2.网卡安装好了,设置一下网络信号问题
sudo vim /etc/modprobe.d/rtl8723be.conf
options rtl8723be ant_sel=2   将这句添加在末尾
 
3.无线网总掉解决
sudo vim /etc/modprobe.d/rtl8723be.conf
在该文件添加以下语句:
options rtl8723be ips=0
options rtl8723be fwlps=0
options rtl8723be swenc=1
 
4.重启系统解决
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25079.html