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

  • 相关阅读:
    Ubuntu18.04彻底删除MySQL数据库(转载)
    Windows中杀死占用某个端口的进程(转载)
    记一次使用mybatis生成工具生成mapper层代码
    解决git push过程中出现Please make sure you have the correct access rights and the repository exists.(转载)
    xshell连接到Vmware中的centos附加解决ens33看不到ip地址的问题
    常见Git命令清单(转载)
    Linux常用命令大全(转载)
    腾讯云centos服务器上安装hadoop踩坑记
    PowerShell 获取大文件行数
    Cannot Login to SQL Server using administrator account
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3159621.html
Copyright © 2011-2022 走看看