回家之后,想用笔记本给朋友传个文件,结果传了好几次,都传不上去。本来以为是路由器中的无线模块坏了,因为手机上看个视频有的时候也刷不出来。今天就去买了个路由器换上了。结果传文件,还是传不过去。
而用电脑上传文件,就很稳定,没有问题。从笔记本上scp文件到家里的电脑上,想用家里的电脑发,结果发现给断网了。。。
然后我就查了一下,还真在AskUbuntu中找到了答案。
我们需要为realtek无线网卡安装一个新的模块,一个解决无线经常掉线的模块。
先安装必要的模块: sudo apt-get install build-essential git
获取新的wifi模块: git clone https://github.com/lwfinger/rtlwifi_new/
构建模块并安装: cd rtlwifi_new make sudo make install
重启或者unload/load这个模块.建议直接重启,我unload/load模块,还是不好使,重启一遍就好了。
unload模块: sudo modprobe -r rtl8723be
load模块: sudo modprobe rtl8723be
如果还是不管用,就在/etc/modprobe.d/rtl8723be.conf这个文件中加入下面这行: options rtl8723be fwlps=0
在更新内核后,需要重新构建这个模块: **make clean git pull make clean && make sudo make install **