多语言展示
当前在线:1245今日阅读:181今日分享:30

R720服务器安装rhel 5识别不到网卡

R720服务器安装rhel 5识别不到网卡,但是安装rhel 6就能识别到4个网卡,但是rhel6不能安装oracle 10g。目前正在Oracle 10g数据库存储迁移,从光纤存储迁移到新的nas存储,如果安装rhel 6需要升级(数据库2T),升级的话停库比较长,但是直接安装Oracle10g  通过dg中转,实现数据库只需要重启就行。所以只能安装rhel 5,解决网卡不能识别的问题。问题解决步骤:1:安装rhel5.5 4个网卡都不能识别2:安装rhel5.6 仍然不能识别3:安装rhel 6.4 后网卡都能识别到4:找到网卡设备号,通过设备号找到厂商编号5:下载对应厂商编号Linux驱动6:检查kernel包和gcc编译包是否安装全7:解压、编译、安装驱动8:重启验证
方法/步骤
1

安装rhel5.5 4个网卡都不能识别

2

安装rhel5.6 仍然不能识别

3

安装rhel 6.4 后网卡都能识别到

4

找到网卡设备号,通过设备号找到厂商编号[root@localhost ~]# kudzu --probe --class=networkdesc: 'Broadcom Corporation Device 165f'网卡编号165f ,根绝编号找出对应part bumberNetXtreme BCM5720 Gigabit Ethernet PCIe

5

下载对应厂商编号Linux驱动驱动:linux-3.136h.zip

6

检查kernel包和gcc编译包是否安装全[root@localhost tg3-3.136h]# rpm -qa | grep kernel[root@localhost tg3-3.136h]# rpm -qa | grep gcc

7

解压、编译、安装驱动[root@localhost zxx_software]# unzip linux-3.136h.zip[root@localhost zxx_software]# lslinux-3.136h.zip  README.TXT  tg3-3.136h-1.src.rpm  tg3-3.136h.tar.gz  tg3_sup-3.136h-1.ISO.tar.gz[root@localhost zxx_software]# tar -zvxf tg3-3.136h.tar.gz  解压之后[root@localhost zxx_software]# lslinux-3.136h.zip  README.TXT  tg3-3.136h  tg3-3.136h-1.src.rpm  tg3-3.136h.tar.gz  tg3_sup-3.136[root@localhost zxx_software]# lsmod | grep tg3      空值[root@localhost zxx_software]#[root@localhost zxx_software]# cd tg3-3.136h[root@localhost tg3-3.136h]# make clean  清除网卡驱动[root@localhost tg3-3.136h]# make modrules   安装网卡驱动模块[root@localhost tg3-3.136h]# make install  接着安装[root@localhost tg3-3.136h]# depmod -a   接挂[root@localhost tg3-3.136h]# make ./tg3.ko    挂载驱动[root@localhost tg3-3.136h]# lsmod | grep tg3   查看是否挂载成功tg3                   192272  0hwmon                  36553  2 power_meter,tg3重启服务器

8

重启验证ifconfig和service network status 查看只有一个网卡被激活,ifconfig eth0 upifconfig eth1 upifconfig eth3 upservice network status 查看发现四个网卡都激活,重启之后发现只有网卡1和网卡3激活因为只需要用到一个网卡,所以不用启用其他网卡

推荐信息