centos BCM4312 802.11b/g无线网卡驱动安装

本文介绍了解决 CentOS 6.0 中无线网络无法连接的问题,通过检测并确认网卡型号为 Broadcom BCM43128 后,从官方网站下载最新驱动程序 hybrid-portsrc_x86_32-v5_100_82_38.tar.gz。文章详细记录了安装步骤,包括验证网卡 PCI ID、解压驱动文件、编译安装、禁用原有驱动及添加开机启动等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

安装完成centos 6.0 时,无线网络不能链接。提示没有发现设备。

        使用命令检测网卡 lspci | grep Network   为“06:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)” 官网http://www.broadcom.com/support/802.11/linux_sta.php 下载最新的网卡驱动程序 hybrid-portsrc_x86_32-v5_100_82_38.tar.gz  驱动支持
 
         BRCM            PCI    PCI          Dell
        Product Name      Vendor ID    Device ID    Product ID
          -------------     ----------    ---------   -----------
          4311 2.4 Ghz        0x14e4    0x4311      Dell 1390
          4311 Dualband        0x14e4    0x4312      Dell 1490
          4311 5 Ghz        0x14e4  0x4313      
          4312 2.4 Ghz        0x14e4    0x4315      Dell 1395
          4313 2.4 Ghz        0x14e4    0x4727     Dell 1501
          4321 Dualband        0x14e4    0x4328      Dell 1505
          4321 Dualband        0x14e4    0x4328      Dell 1500
          4321 2.4 Ghz        0x14e4    0x4329      
          4321 5 Ghz        0x14e4    0x432a      
          4322 Dualband     0x14e4    0x432b      Dell 1510
          4322 2.4 Ghz      0x14e4     0x432c      
          4322 5 Ghz        0x14e4     0x432d      
          43224 Dualband    0x14e4    0x4353      Dell 1520
          43225 2.4 Ghz     0x14e4    0x4357      
          43227 2.4 Ghz     0x14e4  0x4358

          43228 Dualband    0x14e4  0x4359      Dell 1530

使用命令lspci -n | grep 14e4  验证网卡 pci ids 如果含有你的网卡则进行下一步,

# mkdir hybrid_wl

# cd hybrid_wl

# tar xzf <path>/hybrid-portsrc_x86-32_v5.100.82.38.tar.gz

当驱动文件解压后

# make clean   (optional)
# make

如果是第一安装则下一步

# lsmod  | grep "b43\|ssb\|wl"

如果列出系统自带的驱动则

# rmmod b43
# rmmod ssb
# rmmod wl

然后再将现有的驱动程序添加到黑名单中

# echo "blacklist ssb" >> /etc/modprobe.d/blacklist.conf
# echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf

现在开始载入新的驱动

# modprobe lib80211  
或者
# modprobe ieee80211_crypt_tkip

然后

# insmod wl.ko

等待5秒钟的样子

就可以正确的显示无线网了

如果时间过了很久则使用下面的命令验证是否加载正确的网卡驱动

  # lsmod  | grep "b43\|ssb\|wl"

如果正确执行,则下一步

添加开机启动

# load driver as described above
# cp wl.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless  //其中‘unanme-r’是系统的内核版本
# depmod -a
 
# echo modeprobe wl >> /etc/rc.local

以上是我在centos 6.0 中安装成功的案例,但有关具体详情还是以官方的 readme.txt 里面的为主。




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值