当前位置: 首页 > news >正文

Thinkpad E430+CentOS 6.4+ linux-3.10.12内核网卡驱动(无线+有线)配置

       配置并编译安装内核模块和内核后,解压附件 firmware.tar.bz2,拷贝其中的rtlwifi文件夹到/lib/firmware下,然后

执行装载内核模块命令:

        


        

        

sudo modprobe rtl8192ce ( 若装载后显示device not ready,需要进入机子BIOS恢复默认设置,重启)

        

一些信息:

 

[ghui@BuildHost Desktop]$ lspci
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1c.2 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 3 (rev c4)
00:1c.3 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 4 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation HM77 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)
03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
0c:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 07)

 

[ghui@BuildHost Desktop]$ lsmod | grep rtl
rtl8192ce              52838  0 
rtl8192c_common        41001  1 rtl8192ce
rtlwifi                80851  1 rtl8192ce
mac80211              219856  2 rtl8192ce,rtlwifi
cfg80211              134725  2 rtlwifi,mac80211
[ghui@BuildHost Desktop]$ lsmod | grep r8169
r8169                  40549  0 
mii                     2779  1 r8169

 

[ghui@BuildHost Desktop]$ ls /lib/firmware/rtlwifi/ -lash
total 332K
4.0K drwxr-xr-x.  2 root root 4.0K Sep 21 02:59 .
4.0K drwxr-xr-x. 45 root root 4.0K Sep 21 01:39 ..
4.0K -rwxr-xr-x.  1 root root 2.1K Sep 21 02:59 Realtek-Firmware-License.txt
 12K -rwxr-xr-x.  1 root root  11K Sep 21 02:59 rtl8188efw.bin
 16K -rwxr-xr-x.  1 root root  16K Sep 21 02:59 rtl8192cfw.bin
 16K -rwxr-xr-x.  1 root root  15K Sep 21 02:59 rtl8192cfwU_B.bin
 16K -rwxr-xr-x.  1 root root  15K Sep 21 02:59 rtl8192cfwU.bin
 24K -rwxr-xr-x.  1 root root  21K Sep 21 02:59 rtl8192defw_12.bin
 32K -rwxr-xr-x.  1 root root  31K Sep 21 02:59 rtl8192defw.bin
 80K -rwxr-xr-x.  1 root root  79K Sep 21 02:59 rtl8192sefw.bin
 88K -rwxr-xr-x.  1 root root  87K Sep 21 02:59 rtl8192sefw.old.bin
 24K -rwxr-xr-x.  1 root root  23K Sep 21 02:59 rtl8723fw_B.bin
 12K -rwxr-xr-x.  1 root root  12K Sep 21 02:59 rtl8723fw.bin


[ghui@BuildHost Desktop]$ modinfo rtl8192ce
filename:       /lib/modules/3.10.12/kernel/drivers/net/wireless/rtlwifi/rtl8192ce/rtl8192ce.ko
firmware:       rtlwifi/rtl8192cfwU_B.bin
firmware:       rtlwifi/rtl8192cfwU.bin
firmware:       rtlwifi/rtl8192cfw.bin
description:    Realtek 8192C/8188C 802.11n PCI wireless
license:        GPL
author:         Larry Finger	<Larry.Finger@lwfinger.net>
author:         Realtek WlanFAE	<wlanfae@realtek.com>
author:         lizhaoming	<chaoming_li@realsil.com.cn>
srcversion:     8F7DAD3B5887F2048AC7550
alias:          pci:v000010ECd00008176sv*sd*bc*sc*i*
alias:          pci:v000010ECd00008177sv*sd*bc*sc*i*
alias:          pci:v000010ECd00008178sv*sd*bc*sc*i*
alias:          pci:v000010ECd00008191sv*sd*bc*sc*i*
depends:        rtlwifi,rtl8192c-common,mac80211
intree:         Y
vermagic:       3.10.12 SMP preempt mod_unload modversions CORE2 
parm:           swenc:Set to 1 for software crypto (default 0)
 (bool)
parm:           ips:Set to 0 to not use link power save (default 1)
 (bool)
parm:           swlps:Set to 1 to use SW control power save (default 0)
 (bool)
parm:           fwlps:Set to 1 to use FW control power save (default 1)
 (bool)
parm:           debug:Set debug level (0-5) (default 0) (int)


     至此,linux-3.10.12内核下的无线+有线网卡安装完成,enjoy...

 

 

转载于:https://www.cnblogs.com/james1207/p/3331177.html

相关文章:

  • HBase Shell输入命令无法删除问题解决技巧
  • java 表格项的删除、编辑、增加 修改版
  • 《敏捷个人》周刊 第5期 (可下载)
  • 暂时性死区
  • nginx实现最简单的直播
  • java项目代码上线
  • MySQL引擎之innodb介绍及特点
  • mybatis一级缓存二级缓存
  • 高德,百度,84经纬度坐标系的相互转换
  • 解决 Elasticsearch 超过 10000 条无法查询的问题
  • 链表插入排序、链表归并排序
  • 检测ip代理有效性
  • Java开发笔记(一百二十一)AWT输入框
  • 压缩命令
  • 未能加载文件或程序集“Microsoft.mshtml, Version=7.0.3300.0…………解决方法
  • [译]CSS 居中(Center)方法大合集
  • 【5+】跨webview多页面 触发事件(二)
  • 【附node操作实例】redis简明入门系列—字符串类型
  • 【跃迁之路】【669天】程序员高效学习方法论探索系列(实验阶段426-2018.12.13)...
  • Bootstrap JS插件Alert源码分析
  • github从入门到放弃(1)
  • js中的正则表达式入门
  • PHP变量
  • Spring框架之我见(三)——IOC、AOP
  • Vim 折腾记
  • vue从入门到进阶:计算属性computed与侦听器watch(三)
  • 从零开始的webpack生活-0x009:FilesLoader装载文件
  • 道格拉斯-普克 抽稀算法 附javascript实现
  • 浮动相关
  • 深度解析利用ES6进行Promise封装总结
  • 用mpvue开发微信小程序
  • 智能合约开发环境搭建及Hello World合约
  • raise 与 raise ... from 的区别
  • 如何在 Intellij IDEA 更高效地将应用部署到容器服务 Kubernetes ...
  • # 再次尝试 连接失败_无线WiFi无法连接到网络怎么办【解决方法】
  • #Z2294. 打印树的直径
  • (07)Hive——窗口函数详解
  • (附源码)apringboot计算机专业大学生就业指南 毕业设计061355
  • (附源码)springboot太原学院贫困生申请管理系统 毕业设计 101517
  • (附源码)springboot优课在线教学系统 毕业设计 081251
  • (强烈推荐)移动端音视频从零到上手(上)
  • (算法)Game
  • (转)linux自定义开机启动服务和chkconfig使用方法
  • * CIL library *(* CIL module *) : error LNK2005: _DllMain@12 already defined in mfcs120u.lib(dllmodu
  • ***监测系统的构建(chkrootkit )
  • *ST京蓝入股力合节能 着力绿色智慧城市服务
  • .form文件_一篇文章学会文件上传
  • .NET 4 并行(多核)“.NET研究”编程系列之二 从Task开始
  • .NET 4.0网络开发入门之旅-- 我在“网” 中央(下)
  • .net 简单实现MD5
  • .NET/C# 获取一个正在运行的进程的命令行参数
  • .NET命令行(CLI)常用命令
  • /usr/bin/python: can't decompress data; zlib not available 的异常处理
  • @DependsOn:解析 Spring 中的依赖关系之艺术
  • [ vulhub漏洞复现篇 ] Apache Flink目录遍历(CVE-2020-17519)