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,希望在下一个版本中解决该问题并发出更新。

  • 相关阅读:
    JAVA动态代理
    图解 Tomcat 体系结构
    AdvancedDataGrid的使用
    You have an error in your SQL syntax; check the manual that corresponds...错误解决方案
    更新整站索引时失败,错误原因: [Incorrect integer value: `` for column `uptime` at row 1]
    dedecms转换v9 卡住的解决办法
    IIS 涉及到500和403或者404友好错误的设置!
    PHP Warning: date(): It is not safe to rely on the system's timezone settings
    不能读取记录;在 'MSysObjects' 上没有读取数据权限
    PHP5.3.5如何连接MSSql Server2005
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3159621.html
Copyright © 2011-2022 走看看