OS:Fedora 25 KDE

系统内核:4.10.16-200.fc25.x86_64 #1

网卡:BCM43142

1、识别自己的网卡型号:
命令:lspci | grep -i broadcom

或者 lspci | grep -i Network

03:00.0 Network controller: Broadcom Limited BCM43142 802.11b/g/n (rev 01)

2、添加源:添加RPM Fusion源 安装需要的包
yum install --nogpgcheckhttp://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-25.noarch.rpm

3、安装

$ yum search kmod-wl
Redirecting to '/usr/bin/dnf search kmod-wl' (see 'man yum2dnf')

Repository updates is listed more than once in the configuration

Repository updates-debuginfo is listed more than once in the configuration

Repository updates-source is listed more than once in the configuration

Repository fedora is listed more than once in the configuration

Repository fedora-debuginfo is listed more than once in the configuration

Repository fedora-source is listed more than once in the configuration

====================================== N/S 匹配:kmod-wl =======================================

kmod-wl.x86_64 : Metapackage which tracks in wl kernel module for newest kernel

akmod-wl.x86_64 : Akmod package for wl kernel module(s)

kmod-wl-4.10.16-200.fc25.x86_64.x86_64 : wl kernel module(s) for 4.10.16-200.fc25.x86_64

$ yum install akmod-wl kmod-wl  
sudo dnf install kernel-devel akmod-wl        重新编译内核模块
sudo akmods                 加载内核代码
sudo modprobe wl               重启网络管理器
sudo systemctl restart NetworkManager

如果源里也没有,只能自己下载安装,这里可以到http://rpmfind.net去搜索下载,或者:http://pan.baidu.com/s/1eSKEEDc,是rpm包,下下来安装,然后又会报这个akmods包依赖rpmdev-vercmp 和kmodtool,那就安装:
yum install rpmdevtools -y

去http://rpmfind.net搜索kmodtool下载安装,或者:http://pan.baidu.com/s/1jI8vnHs
完成后再安装akmods,这回应该就过了。过了以后就可以运行:
yum install kmod-wl -y

_____________________________________________________________-

另外如果还不行的话那还有一个办法,不过比较麻烦,请直接参考:http://elrepo.org/tiki/wl-kmod
---------------------------------------------------------------------------------------

原址:http://blog.csdn.net/lina_acm/article/details/69663508

Fedora BCM43142 无线网卡驱动安装的更多相关文章

  1. Ubuntu 18.04 安装 Broadcom Limited BCM43142无线网卡驱动

    系统默认没有集成 BCM43142无线网卡驱动可以通过下面的方法安装--------------------------------------------------------------root ...

  2. Centos 7 联想Y430P无线网卡驱动安装 过程参考

    Centos 7  联想Y430P无线网卡驱动安装 过程参考 ABRT 已检测到 [root@endv ~]# yum install -y rdesktop 已加载插件:fastestmirror, ...

  3. centos 7 查看系统/硬件信息及运维常用命令+联想Y430P无线网卡驱动安装

     centos 7 查看系统/硬件信息及运维常用命令 当前环境:联想Y430P  CentOS 7.3 [root@yan-001 ~] # uname -a # 查看内核/操作系统/CPU信息的Li ...

  4. Ralink RT3290无线网卡驱动安装 (linux)

    Ralink RT3290无线网卡驱动安装 (linux, 笔记备忘) 1. 设备信息查看无线网卡设备信息 # lspci : 2. 驱动下载http://pan.baidu.com/s/1sjsHN ...

  5. Liunx下Intel无线网卡驱动安装

    原文: https://blog.csdn.net/u014157776/article/details/78272611 首先查看网卡型号,指令: lspci | grep -i net 如果是In ...

  6. CentOS 6.6下 BCM4312 802.11b/g无线网卡驱动安装

    1.目前www.broadcom.com网站上最新版本为hybrid-v35,但此版本与2.6.32不匹配,无法识别验证密码,搜索网上说是要求升级内核,后根据http://www.dadclab.co ...

  7. CentOS 6.5 BCM43142 80211无线网卡驱动安装

    https://blog.csdn.net/lisonglisonglisong/article/details/74859545 https://blog.csdn.net/shile/articl ...

  8. Ubuntu 14.04 ThinkPad E431无线网卡驱动安装

    Ubuntu 14.04下安装无线网卡驱动. sudo apt-get install linux-headers-generic build-essential dkms  sudo apt-get ...

  9. DELL灵越 n4030笔记本安装win7之无线网卡驱动安装

    本人安装的是win7 32位专业版,安装完成后发现无线网卡找不到了.DELL灵越 n4030自己带无线网卡的.问题的根源在于无线网卡驱动没有安装或没有安装匹配的无线网卡驱动. 那么问题来了.什么无线网 ...

随机推荐

  1. logging.basicConfig参数简介

    通过logging.basicConfig函数对日志的输出格式及方式做相关配置 import logging logging.basicConfig(level=logging.DEBUG, form ...

  2. Python 面向对象 类 __str__

    class dog(object): def __init__(self,name): self.name = name d = dog('mike') print(d) # <__main__ ...

  3. Mac Atom的PHP插件

    首先,需要在 ~/.atom目录下创建 .atom文件,写入如下内容: strict-ssl = false http_proxy = socks5://127.0.0.1:16888 https_p ...

  4. Hadoop NameNode 高可用 (High Availability) 实现解析

    转载自:http://reb12345reb.iteye.com/blog/2306818 在 Hadoop 的整个生态系统中,HDFS NameNode 处于核心地位,NameNode 的可用性直接 ...

  5. C++语言中的四种类型转换

    1 引子 这篇笔记是根据StackOverflow上面的一个问题整理而成,主要内容是对C/C++当中四种类型转换操作进行举例说明.在之前其实对它们都是有所了解的,而随着自己在进行总结,并敲了一些测试示 ...

  6. 字王·国标二级字库汉字GB内码un码三合一对照表2016版

    国标二级字库汉字GB内码un码三合一对照表 字王2016版 汉字内码表,是制作字库的基础,简单.便利的版本很少,根据实战经验,特此制作这个三合一版本的汉字.GB内码.Unicode码对照表: l 提供 ...

  7. mysql日期和JDBC查询出来的结果相差8小时

    数据库时间:2017-11-08 16:30:00 查询出来: 2017-11-09 00:30:00 问题:数据库时区,和JDBC连接时区设置问题. set global time_zone = ' ...

  8. Asp.net下拉树实现(Easy UI ComboTree)

    场景描述:某个公司有多个部门并且部门存在子部门,通过一个下拉框选取多个部门,但是如果某个部门的子部门被全部选择,则只取该部门,而忽略子部门.(叶子节点全被选中时,只取父节点) 知识点:ComboTre ...

  9. 解决 "OperationalError: (sqlite3.OperationalError) no such table: ..."问题

    参考:flask/sqlalchemy - OperationalError: (sqlite3.OperationalError) no such table 在用Flask写一个简单的py文件,做 ...

  10. Python学习札记(三十八) 面向对象编程 Object Oriented Program 9

    参考:多重继承 NOTE #!/usr/bin/env python3 class Animal(object): def __init__(self, name): self.name = name ...