如果没安装gcc及 kernel-devel 则可以查看
rpm -qa |grep gccrpm-qa |grep kernel-devel
如果没安装,那就老实安装吧,网络存在的情况下安装
yum install gcc
yum install kernel-devel
如果没有网络则需要将光盘中的iso文件设置为yum源
1 挂载光盘 在media/rhel 中建立文件
mkdir /media/rhel
mount /dev/cdrom /media/rhel --如果是图形安装通常已经自动挂载好
ls /media/rhel
2 设置/etc/yum.repos.d/rhel-debuginfo.repo
[base]
name=Server Local Sources
baseurl=file:///media/rhel/Server
enable=1
gpcheck=1
gpgkey=file:///media/rhel/RPM-GPG-KEY-redhat-release
-----------安装相应的网卡驱动 首先将相应的网卡驱动传输到制定的目录中
一、Install RPM Package
1)、rpm -ivh netxtreme2-7.8.56-1.src.rpm
2)、cd/usr/src/redhat
rpm -bb SPECS/netxtreme2.spec
or
rpmbuild -bb SPECS/netxtreme2.spec
3)、rpm -ivh RPMS/x86_64/netxtreme2-7.8.56-1.x86_64.rpm
驱动将会安装在如下的目录中
2.4.x kernels:
/lib/modules//kernel/drivers/net/bnx2.o
/lib/modules//kernel/drivers/net/bnx2x.o
2.6.0 kernels:
/lib/modules//kernel/drivers/net/bnx2.ko
/lib/modules//kernel/drivers/net/bnx2x.ko
2.6.16 and newer kernels:
/lib/modules//kernel/drivers/net/bnx2.ko
/lib/modules//kernel/drivers/net/bnx2x.ko
/lib/modules//kernel/drivers/net/cnic.ko
Newer RHEL and SLES distros:
/lib/modules//updates/bnx2.ko
/lib/modules//updates/cnic.ko
/lib/modules//updates/bnx2x.ko
/lib/modules//updates/bnx2i.ko
/lib/modules//updates/bnx2fc.ko
4)、卸载当前存在的驱动
rmmod bnx2
rmmod bnx2x
如果网卡驱动被装载,需要卸载相关的驱动
rmmod bnx2fc
rmmod bnx2i
rmmod cnic
5)、装载bnx2驱动 for BCM5706/BCM5708/5709/5716 devices:
insmod bnx2.o
or
insmod bnx2.ko
装载bnx2x 驱动 for BCM57710/BCM57711/BCM57711E/BCM57712
insmod bnx2x.o
or
insmod bnx2x.ko
or
modprobe bnx2x
装载 cnic 驱动
insmod cnic.ko
or
modprobe cnic
To load the bnx2i driver:
insmod bnx2i.ko
or
modprobe bnx2i
6)、从新启动
7)、ifconfig -a|more --查看当前网卡驱动 是否已经设置ok
完毕!
建议看看《Linux就该这么学》这本书
您好,您想知道Linux系统升级内核后如何加载万兆网卡,这是一个很有意义的问题。首先,您需要确保您的Linux系统已经安装了最新的内核。如果您的系统没有安装最新的内核,您可以使用apt-get或yum命令来安装最新的内核。接下来,您需要确保您的万兆网卡已经正确安装。您可以使用lspci命令查看您的系统中安装的网卡,并确保您的万兆网卡已经正确安装。
接下来,您需要安装万兆网卡的驱动程序。您可以在网上搜索您的万兆网卡的驱动程序,然后下载并安装它。
最后,您需要使用ifconfig命令来启动您的万兆网卡。如果您的网卡已经正确安装,您可以使用ifconfig命令来启动您的网卡,并且您的万兆网卡就可以正常使用了。
总之,要加载万兆网卡,您需要确保您的Linux系统已经安装了最新的内核,确保您的万兆网卡已经正确安装,安装万兆网卡的驱动程序,并使用ifconfig命令来启动您的万兆网卡。
系统版本
[root@ ~]# cat /etc/redhat-release
CentOS release 6.8 (Final)
[root@ ~]# uname -r
2.6.32-642.6.1.el6.x86_64
网卡说明
eth0 192.168.1.8(服务器外网卡)
eth1 服务器网卡(内网)
eth2 服务器网卡(内网)
[root@ ~]# /etc/init.d/iptables stop
[root@ ~]# chkconfig iptables off
关闭selinux
[root@ ~]#setenforce 0
[root@ ~]#sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/‘ /etc/selinux/config
禁用NetworkManager
[root@ ~]# /etc/init.d/NetworkManager stop
Stopping NetworkManager daemon: [ OK ]
[root@ ~]# chkconfig NetworkManager off
[root@ ~]# /etc/init.d/network restart
双网卡绑定配置过程
[root@ ~]# cd /etc/sysconfig/network-scripts/
编辑eth1网卡
[root@ network-scripts]# cat >ifcfg-eth1 <>DEVICE=eth1
>ONBOOT=yes
>BOOTPROTO=none
>USERCTL=no
>MASTER=bind0
>EOF
编辑eth2网卡
[root@ network-scripts]# cat >ifcfg-eth2
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bind0
EOF
编辑bind0网卡
[root@ network-scripts]# cat >ifcfg-bind0 <>DEVICE=bind0
>TYPE=Ethernet
>ONBOOT=yes
>BOOTPROTO=none
>IPADDR=10.0.0.8
>NETMASK=255.255.255.0
>GATEWAY=10.0.0.254
>IPV6INIT=no
>USERCTL=no
>EOF
配置bond参数
[root@ network-scripts]# cat >/etc/modprobe.conf <>alias bind0 bonding
>options bind0 miimon=100 mode=6
>EOF
加入开机自启动(/etc/rc.local)
[root@ network-scripts]# cat >>/etc/rc.local <>ifenslave bind0 eth1 eth2
>EOF
重启网络服务
[root@LVS-2 network-scripts]# service network restart
Shutting down interface eth0: [ OK ]
Shutting down interface eth1: [ OK ]
Shutting down interface eth2: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface bind0: WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.
WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.
Determining if ip address 10.0.0.8 is already in use for device bind0..[ OK ]
Bringing up interface eth0: Determining if ip address 192.168.1.8 is already in use for device eth0... [ OK ]
Bringing up interface eth1: RTNETLINK answers: File exists [ OK ]
Bringing up interface eth2: RTNETLINK answers: File exists [ OK ]
配置使绑定立即生效
[root@LVS-2 network-scripts]# ifenslave bind0 eth1 eth2
测试联通
[root@LVS-2 network-scripts]# ping 10.0.0.8
PING 10.0.0.8 (10.0.0.8) 56(84) bytes of data.
64 bytes from 10.0.0.8: icmp_seq=1 ttl=64 time=0.089 ms
64 bytes from 10.0.0.8: icmp_seq=2 ttl=64 time=0.046 ms
^C
--- 10.0.0.8 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1921ms
rtt min/avg/max/mdev = 0.046/0.067/0.089/0.023 ms
此时会发现系统多一个网卡
[root@LVS-2 network-scripts]# ifconfig bind0
bind0
Link encap:Ethernet HWaddr 00:0C:29:CC:9B:5
inet addr:10.0.0.8 Bcast:10.0.0.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fecc:9b55/64 Scope:LinkUP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1
RX packets:151 errors:0 dropped:0 overruns:0 frame:0
TX packets:3 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:11826 (11.5 KiB) TX bytes:258 (258.0 b)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)