zoukankan      html  css  js  c++  java
  • ubuntu16.04 无法wifi链接一段时间掉线且无法再连接

    ubuntu16.04 无法wifi链接一段时间掉线且无法再连接,从网上搜索的确认这个一个bug。

    解决方法:

    1.Get details of your PCI wireless card by running sudo lshw -class network

    显示信息如下:

    *-network               
           description: Wireless interface
           product: RTL8723BE PCIe Wireless Network Adapter
           vendor: Realtek Semiconductor Co., Ltd.
           physical id: 0
           bus info: pci@0000:02:00.0
           logical name: wlp2s0
           version: 00
           serial: b0:c0:90:5c:1c:d5
            64 bits
           clock: 33MHz
           capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
           configuration: broadcast=yes driver=rtl8723be driverversion=4.4.0-21-generic firmware=N/A ip=192.168.0.8 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
           resources: irq:16 ioport:d000(size=256) memory:df200000-df203fff

    2.Get your card model info according to the product line. For instance, as you can see in the question description it says product: RTL8723BE PCIe Wireless Network Adapter so the model of my card is RTL8723BE

    3.Open or create /etc/pm/config.d/config and add SUSPEND_MODULES="rtl8723be"(replace rtl8723be with your own model number) Then run echo "options rtl8723be fwlps=N" | sudo tee /etc/modprobe.d/rtl8723be.conf and reboot.

    命令行为:

    sudo vim /etc/pm/config.d/config

    然后输入:SUSPEND_MODULES="rtl8723be" (注意rtl8723be要用你自己的number替换)

    然后保存并退出文件

    在终端中输入: echo "options rtl8723be fwlps=N" | sudo tee /etc/modprobe.d/rtl8723be.conf

    然后 输入 reboot 重启即可

    解决方法参看:

    http://askubuntu.com/questions/762198/16-04-lts-wifi-connection-issues

  • 相关阅读:
    idea 管理java 多module的工程
    协程与函数线程异步的关系
    HDU 5640 King's Cake【模拟】
    逻辑运算
    Silverlight 学习笔记——布局 Evil 域 博客园
    ExtJS 日期格式问题
    偏方收藏(此信息为本人收藏,安全性无法验证,使用后产生的一些后果自负)
    form和column:extJS的布局
    Sqlserver 通用存储过程分页
    Ext中TreePanel控件和TabPanel控件搭配测试
  • 原文地址:https://www.cnblogs.com/ydxt/p/6443039.html
Copyright © 2011-2022 走看看