关于ubuntu16无线网卡RTL8723BE频繁掉线及信号不足的解决办法

最近在新电脑上装了ubuntu16,结果wifi经常连不上,连上了过段时间就掉线,路由器就在电脑的旁边,而且信号非常的若.

但是windows系统没有任何问题,所以就在网上找解决办法,也按照网上的方法试了,结果好多方法都是没用的.

最后从askubuntu上找到了解决方法.

首先要查看本机的无线网卡型号:

1 lmtoo@lmtoo:~$ lspci2 00:00.0 Host bridge: Intel Corporation Broadwell-U Host Bridge -OPI (rev 09)3 00:02.0 VGA compatible controller: Intel Corporation Broadwell-U Integrated Graphics (rev 09)4 00:03.0 Audio device: Intel Corporation Broadwell-U Audio Controller (rev 09)5 00:04.0 Signal processing controller: Intel Corporation Broadwell-U Camarillo Device (rev 09)6 00:14.0 USB controller: Intel Corporation Wildcat Point-LP USB xHCI Controller (rev 03)7 00:16.0 Communication controller: Intel Corporation Wildcat Point-LP MEI Controller #1 (rev 03)8 00:1b.0 Audio device: Intel Corporation Wildcat Point-LP High Definition Audio Controller (rev 03)9 00:1c.0 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #1(rev e3)10 00:1c.1 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #2(rev e3)11 00:1c.2 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #3(rev e3)12 00:1c.3 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #4(rev e3)13 00:1c.4 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #5(rev e3)14 00:1d.0 USB controller: Intel Corporation Wildcat Point-LP USB EHCI Controller (rev 03)15 00:1f.0 ISA bridge: Intel Corporation Wildcat Point-LP LPC Controller (rev 03)16 00:1f.2 SATA controller: Intel Corporation Wildcat Point-LP SATA Controller [AHCI Mode] (rev 03)17 00:1f.3 SMBus: Intel Corporation Wildcat Point-LP SMBus Controller (rev 03)18 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS522A PCI Express Card Reader (rev 01)19 08:00.0Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter20 09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller (rev 0a)21 0a:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 940M] (rev a2)

看到第19行的是无线网卡信息,且型号为RTL8723BE.

从网上看到RTL8723系列网卡都有这个频繁掉线的问题,只不过BE版本是更新的版本,添加了一个参数.

再来查看RTL8723BE这块网卡驱动的参数信息,

1 lmtoo@lmtoo:~$ modinfo rtl8723be2 filename: /lib/modules/4.4.0-22-generic/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8723be/rtl8723be.ko3 firmware: rtlwifi/rtl8723befw.bin4 description: Realtek 8723BE 802.11n PCI wireless5 license: GPL6 author: Realtek WlanFAE

7 author: PageHe

8 srcversion: 00619764255210776FAB54D9 alias: pci:v000010ECd0000B723sv*sd*bc*sc*i*

10 depends: rtlwifi,rtl_pci,btcoexist,mac8021111 vermagic: 4.4.0-22-generic SMP mod_unload modversions12 parm: swlps:bool

13 parm: swenc:using hardware crypto (default 0[hardware])14 (bool)15 parm: ips:using no link power save (default 1is open)16 (bool)17 parm: fwlps:using linked fw control power save (default 1is open)18 (bool)19 parm: msi:Set to 1 to use MSI interrupts mode (default 0)20 (bool)21 parm: debug:Set debug level (0-5) (default 0) (int)22 parm: disable_watchdog:Set to 1 to disable the watchdog (default 0)23 (bool)24 parm: ant_sel:Set to 1 or 2 to force antenna number (default 0)25 (int)

看第12行到25行这几个参数,ips和fwlps是用来控制节能的,ant_sel是用来控制信号强度的.最主要的就是修改这几个参数的默认值.

首先我们把配置驱动的文件打开

lmtoo@lmtoo:~$ sudo nano /etc/modprobe.d/rtl8723be.conf

将如下参数黏贴到配置文件中:

options rtl8723be debug=1options rtl8723be disable_watchdog=N

options rtl8723be fwlps=Y

options rtl8723be ips=Y

options rtl8723be msi=N

options rtl8723be swenc=N

options rtl8723be swlps=N

options rtl8723be ant_sel=2

保存配置文件后,运行如下命令来应用配置

lmtoo@lmtoo:~$ sudo modprobe -r rtl8723be

lmtoo@lmtoo:~$ sudo modprobe rtl8723be

是不是信号强了许多?

参考地址:

http://askubuntu.com/questions/526214/how-to-set-parameters-for-realtek-wifi-rtl8723

http://askubuntu.com/questions/635625/realtek-8723be-wifi-problem

http://askubuntu.com/questions/756748/inconsistent-connection-and-super-slow-speed-with-rtl8723be

linux无线网卡断断续续,关于ubuntu16无线网卡RTL8723BE频繁掉线及信号不足的解决方法...相关推荐

  1. Ubuntu 16.04无线网卡RTL8723BE频繁掉线及信号不足解决办法

    参考博客 1. http://www.linuxidc.com/Linux/2016-05/131150.htm

  2. centos linux 系统上 log4j打印的时间与CST时间差8小时的解决方法

    centos linux 系统上 log4j打印的时间与CST时间差8小时的解决方法 参考文章: (1)centos linux 系统上 log4j打印的时间与CST时间差8小时的解决方法 (2)ht ...

  3. 〖Linux〗Kubuntu KDE开机后总是提示“system program problem detected”的解决方法

    [Linux]Kubuntu KDE开机后总是提示"system program problem detected"的解决方法 参考文章: (1)[Linux]Kubuntu KD ...

  4. Kali linux 2016.2(Rolling)之 Nessus安装及Plugins Download Fail 解决方法

    Kali linux 2016.2(Rolling)之 Nessus安装及Plugins Download Fail 解决方法 参考文章: (1)Kali linux 2016.2(Rolling)之 ...

  5. ubuntu16.04下安装openssh-server报依赖错误的解决方法

    ubuntu16.04下安装openssh-server报依赖错误的解决方法 参考文章: (1)ubuntu16.04下安装openssh-server报依赖错误的解决方法 (2)https://ww ...

  6. Linux系统中提示/usr/bin/ld: cannot find -lxxx错误的通用解决方法

    Linux系统中提示/usr/bin/ld: cannot find -lxxx错误的通用解决方法 参考文章: (1)Linux系统中提示/usr/bin/ld: cannot find -lxxx错 ...

  7. Linux中的基本命令无法使用,报Command not found的错误的解决方法

    Linux中的基本命令无法使用,报Command not found的错误的解决方法 参考文章: (1)Linux中的基本命令无法使用,报Command not found的错误的解决方法 (2)ht ...

  8. Linux | 终端显示为bash-4.1$以及提示bash:command not found的解决方法

    本文总结如何解决 Linux 终端显示为 bash-4.1 1 以及提示 bash: command not found 情形 2 ' 3 的解决方法. Updated: 2022 / 7 / 18 ...

  9. 记一次路由器频繁掉线问题的分析、解决与发展

    一.前言 刚搬新家(两个多月了),办了电信的300M光纤,送了一款小米的AX2100的电信定制版路由器.在这两个月的实际体验来看,每1个小时就会掉一次线.最终忍无可忍,想办法去解决这个问题. 二.问题 ...

最新文章

  1. Transformer杀疯了!力压DeepMind、百度,在GNN大赛夺冠
  2. Gartner 2019 年供应链技术八大趋势:AI、高级分析、物联网、RPA、自主设备、数字孪生...
  3. python读取txt文件写入-Python读写txt文本文件的操作方法全解析
  4. 手把手带你爬虫 | 爬取语录大全
  5. 三目运算符_Java中的三目运算符
  6. 如何用python生成可执行程序必须经过_python怎么生成可执行文件
  7. 时刻记住要做合格的程序员——一次高性能程序设计实验课后的反思
  8. C++ windows网络编程系列1—各种通信模型对比
  9. java右移位_Java移位运算符详解实例
  10. ROS安装教程(ubuntu18.04+melodic版本)
  11. 你的计算机无法连接到远程计算机,因为远程桌面网关服务器暂时不可用。
  12. 数据从hana倒回Oracle的方法,SAP HANA SLT 将Oracle表 数据同步到HANA数据库
  13. 程序员七夕表白攻略:原来数学才是世界上最浪漫的学科!
  14. vue 打卡图片_掀起ins打卡潮的《小丑》台阶到底有什么魔力?
  15. Android 关机时的radio相关关闭流程
  16. android自动对焦第一次对焦,Android自定义相机实现自动对焦和手动对焦
  17. 使用keep-live组件无法销毁cesium的view
  18. origin ‘http://localhost:8080‘ has been blocked by CORS policy: Request header field platform is not
  19. eNSP第三篇:STP,生成树,xSTP,MSTP,多生成树,交换机工作原理,环路的形成
  20. 幻方萤火 | 高速读写文件系统 3FS

热门文章

  1. POJ NOI MATH-7830 求小数的某一位
  2. Python 网络爬虫与信息获取(一)—— requests 库的网络爬虫
  3. 概率论经典问题 —— 三个事件 A、B、C 独立 ≠ 三个事件两两独立
  4. x=min(x, y)
  5. 除法运算、商、余数与取模
  6. ubuntu 下 opencv 3. 的安装和运行
  7. 机器学习基础(三十五)—— 协同过滤(从匹配用户到匹配商品)
  8. 工具的使用——搜狗输入法
  9. logback日志pattern_[SpringBoot2.X]28- Spring Boot 的日志管理
  10. shiro 单点登录_Shiro权限管理框架(一):Shiro的基本使用