Red Hat enterprise linux 5.4 x64 + DELL R420 安装网卡驱动 (broadcom 5270)

RHEL 5.4 X86_64系统
一、下载网卡驱动
根据服务器的网卡型号下载相应的驱动程序,我这里是Dell R420默认的板载网卡(Broadcom 5720),去以下链接下载相应网卡型号的驱动。
 
二、安装
# unzip linux-3.122n.zip
# cd Server/Linux/Driver
# rpm -ivh tg3-3.122n-1.src.rpm
# cd /usr/src/redhat/SPECS
# rpmbuild -bb tg3.spec
# cd /usr/src/redhat/RPMS/x86_64
# rpm -ivh tg3-3.122n-1.x86_64.rpm
 
三、加载模块
# modprobe tg3
 
vim /etc/modprobe.conf
添加以下两行,或重启系统,自动会添加
alias eth0 tg3
alias eth1 tg3
 
四、查看网卡是否激活
# ifconfig -a

参考:http://www.yaukb.com/2012/07/dell_r420_network/ | Yau's Notes

其实,假设从官网下载的broadcom 5720网卡的驱动为A,解压A,然后参考A里的 README 来安装就可以了。

原文地址:https://www.cnblogs.com/slips/p/3383121.html