zoukankan      html  css  js  c++  java
  • [置顶] 关于UBUNTU 12.04, 在THINKPAD E430C上WIFI连接不上的问题

    今天,把自己的本本给格式化了,化分成两个大块,在一切都搞定了后,出现了一个问题,即WIFI连接不上,但可以搜索到WIFI的网络,开始以为自己手贱,是不是密码输入了,试了N多次,发现偶错了,不是手贱,看来真的有问题了。

    如果你需要查看你的设备型号,可以使用lspci来看看WIFI芯片是什么型号,我的是BCM4313

    在一顿度娘和GOOGLE后,心想估计是驱动挂了,看来又要装驱动了,但无意中从一篇文章中解决了这个问题,文章如下,是一个老外写的:

    原文網址:
    http://tuxcanfly.appspot.com/2011/10/Ubuntu-11-10-Broadcom-Wifi-driver-43xx

    So, the latest ubuntu is out with the latest linux kernel and broadcom brcmsmac drivers.

    As it happens the brcmsmac drivers suck. You can see the list of active wifi networks but won't be able to connect to them.

    If the output of:

    lspci -k | grep brcmsmac

    includes:

    Kernel driver in use: brcmsmac

    Then you have this problem too.

    To solve this, you'll need to install broadcom-sta driver and blacklist the default kernel one.

    sudo apt-get install bcmwl-kernel-source

    Then open /etc/modprobe.d/blacklist-bcm43.conf and add these lines:

    blacklist brcmsmacblacklist bcma

    Restart and check that:

    lspci -k | grep wl

    includes:

    Kernel driver in use: wl

    That should fix your wifi.

    Hope ubuntu devs fix this and push out updates soon.

    大神就是牛X,学习下,也献给和我一样纠结的同学,快速解决这个问题。下面就大概翻译下这个内容,

    1,在终端中输入lspci -k |grep brcmsmac后,如果出现了下面这句话的话,你可以使用下面的方法解决连接不上WIFI的问题。

    2. sudo vi /etc/modprobe.d/blacklist-bcm43.conf后,添加下面这句话,建议编辑之前,最好BACKUP一下,不要挂了。

    blacklist brcmsmacblacklist bcma

    3. 重启电脑,进入系统后,再用命令看看,显示的驱动如Kernel driver in use: wl,再次用WIFI偿试连接。应该可以连接上了,这应该是一个UBUNTU的BUG,希望在下一个版本中解决该问题并发出更新。

  • 相关阅读:
    groovy-搭建环境
    isAssignableFrom
    H5调用摄像头
    php生成唯一id
    剑指Offer刷题日常
    ASCII码对照表
    用redis stream作队列的一些心得
    在 CAP 中使用 AOP ( Castle.DynamicProxy )
    office2019下载
    JVM调优浅谈
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3159621.html
Copyright © 2011-2022 走看看