这个问题困扰了好几天,今天终于在大谷歌的帮助下,在这个网站http://blog.bwysystems.com/bwysystems/?p=16上找到了答案!还是国外的技术论坛强,在百度上搜遍了也没有找到这篇文章,下面简单叙述整个安装过程。

1. 安装e1000e驱动。

1. Move the base driver tar file to the directory of your choice.  For
example, use /home/username/e1000e or /usr/local/src/e1000e. 2. Untar/unzip archive: tar zxf e1000e-x.x.x.tar.gz 3. Change to the driver src directory: cd e1000e-x.x.x/src/ 4. Compile the driver module: # make install The binary will be installed as: /lib/modules/<KERNEL VERSION>/kernel/drivers/net/e1000e/e1000e.[k]o The install locations listed above are the default locations. They
might not be correct for certain Linux distributions. 5. Load the module using either the insmod or modprobe command: modprobe e1000e insmod e1000e Note that for 2.6 kernels the insmod command can be used if the full
path to the driver module is specified. For example: insmod /lib/modules/<KERNEL VERSION>/kernel/drivers/net/e1000e/e1000e.ko With 2.6 based kernels also make sure that older e1000e drivers are
removed from the kernel, before loading the new module: rmmod e1000e; modprobe e1000e 6. Assign an IP address to the interface by entering the following, where
x is the interface number: ifconfig ethx <IP_address> 7. Verify that the interface works. Enter the following, where <IP_address>
is the IP address for another machine on the same subnet as the
interface that is being tested: ping <IP_address>

2. 安装igb驱动。如果没有这一步,ifconfig -a是看不到eth2..eth5接口的,通过lspci可以看到下面的信息:

03:00.0 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
03:00.1 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
04:00.0 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
04:00.1 Ethernet controller: Intel Corporation Device 10c9 (rev 01)
06:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network Connection
07:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network Connection

在这个网址http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=13663&lang=eng下载igb文件,然后安装下面步骤安装:

# tar xfv igb-1.2.44.9.tar.gz
# cd igb-1.2.44.9/src
# make
# make install
# modprobe igb

3. 使用ifconfig -a可以看到如下信息(下面是IP配置好的结果)

[root@localhost src]# ifconfig
eth0 Link encap:Ethernet HWaddr :::B3::
inet addr:192.168.115.178 Bcast:192.168.115.255 Mask:255.255.255.0
inet6 addr: fe80:::48ff:feb3:/ Scope:Link
UP BROADCAST RUNNING MULTICAST MTU: Metric:
RX packets: errors: dropped: overruns: frame:
TX packets: errors: dropped: overruns: carrier:
collisions: txqueuelen:
RX bytes: (3.6 GiB) TX bytes: (1.9 MiB)
Interrupt: eth2 Link encap:Ethernet HWaddr :E0:ED::8B:AE
inet addr:192.168.115.60 Bcast:192.168.115.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:edff:fe21:8bae/ Scope:Link
UP BROADCAST RUNNING MULTICAST MTU: Metric:
RX packets: errors: dropped: overruns: frame:
TX packets: errors: dropped: overruns: carrier:
collisions: txqueuelen:
RX bytes: (862.1 MiB) TX bytes: (1.3 KiB) eth3 Link encap:Ethernet HWaddr :E0:ED::8B:AF
inet addr:192.168.115.61 Bcast:192.168.115.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:edff:fe21:8baf/ Scope:Link
UP BROADCAST RUNNING MULTICAST MTU: Metric:
RX packets: errors: dropped: overruns: frame:
TX packets: errors: dropped: overruns: carrier:
collisions: txqueuelen:
RX bytes: (859.9 MiB) TX bytes: (1.4 KiB) eth4 Link encap:Ethernet HWaddr :E0:ED::8B:B0
inet addr:192.168.115.62 Bcast:192.168.115.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:edff:fe21:8bb0/ Scope:Link
UP BROADCAST RUNNING MULTICAST MTU: Metric:
RX packets: errors: dropped: overruns: frame:
TX packets: errors: dropped: overruns: carrier:
collisions: txqueuelen:
RX bytes: (864.3 MiB) TX bytes: (1.4 KiB) eth5 Link encap:Ethernet HWaddr :E0:ED::8B:B1
inet addr:192.168.115.63 Bcast:192.168.115.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:edff:fe21:8bb1/ Scope:Link
UP BROADCAST RUNNING MULTICAST MTU: Metric:
RX packets: errors: dropped: overruns: frame:
TX packets: errors: dropped: overruns: carrier:
collisions: txqueuelen:
RX bytes: (836.5 MiB) TX bytes: (1.3 KiB) lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::/ Scope:Host
UP LOOPBACK RUNNING MTU: Metric:
RX packets: errors: dropped: overruns: frame:
TX packets: errors: dropped: overruns: carrier:
collisions: txqueuelen:
RX bytes: (8.1 MiB) TX bytes: (8.1 MiB) [root@localhost src]#

http://blog.bwysystems.com/bwysystems/?p=16网站的内容如下:

Linux Intel PRO/ GB Ethernet Controller
Back to the server that was sitting on my desk… The Debian Lenny installation did not seem to recognize the Intel Pro/ // server Ethernet cards, dual port, PCI-E x4. I ran: # lspci | grep Ethernet to list the pci devices (duh ). This gave me the following output: :00.0 Ethernet controller: Intel Corporation Device 10c9 (rev )
:00.1 Ethernet controller: Intel Corporation Device 10c9 (rev )
:00.0 Ethernet controller: Intel Corporation Device 10c9 (rev )
:00.1 Ethernet controller: Intel Corporation Device 10c9 (rev )
:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network Connection
:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network Connection The last two are the on board Ethernet controllers that work fine using the e1000e driver. The ones that I really wanted working were the first items displayed as “Device 10c9 (rev )”. I couldn’t find anything on the internet other than a German post, which looked like the guy was having the same problem (I can’t decipher German). So I started trying out some different Intel drivers. I first tried the standard e1000 driver as I noticed even some PCI express cards used this driver. That didn’t work. Then on my second shot I tried out this one “igb-1.2.44.9.tar.gz”. I’m assuming “igb” stands for Intel Gigabit, which makes sense as that’s what those cards are. If you don’t have the Intel driver disc that came with your cards you can find this driver here: http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=13663&lang=eng To install this driver just do the following: # tar xfv igb-1.2.44.9.tar.gz
# cd igb-1.2.44.9/src
# make
# make install
# modprobe igb As soon as I executed “modprobe igb” I instantly had new eth interfaces! You might want to add “igb” to /etc/modules, which is where you can also supply some parameters for the driver. Hopefully this post will help out anyone else who is having trouble with these cards on Debian. This entry was posted on Sunday, November 15th, at : pm and is filed under Debian GNU/Linux. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Responses to “Linux Intel PRO/ GB Ethernet Controller”

fedora 16安装ByPass四网口网卡遇到的问题的更多相关文章

  1. Windows 7硬盘安装CentOS 6.4 双系统 (WIN7硬盘安装Linux(Fedora 16,CentOS 6.2,Ubuntu 12.04))

     WIN7下硬盘安装Linux(Fedora 16,CentOS 6.2.Ubuntu 12.04) 近期在看<鸟哥私房菜:基础学习篇>.认为非常不错,想要用U盘装个windows 7 和 ...

  2. Windows 7硬盘安装CentOS 6.4 双系统 (WIN7下硬盘安装Linux(Fedora 16,CentOS 6.2,Ubuntu 12.04))

     WIN7下硬盘安装Linux(Fedora 16,CentOS 6.2,Ubuntu 12.04) 最近在看<鸟哥私房菜:基础学习篇>,觉得很不错,想要用U盘装个windows 7 和 ...

  3. Fedora 16下安装ruby on rails

    Fedora 16下安装ruby on rails 最近在windows下写了些rails小程序,问题一个接一个,到最后终于坚信了那句话“windows不适合用于ruby on rails开发”.于是 ...

  4. (转载)eclipse插件安装的四种方法

    eclipse插件安装的四种方法 Eclipse插件的安装方法 1.在eclipse的主目录(ECLIPSE_HOME, 比如在我的机器上安装的目录是:D:\eclipse)有一个plugins的目录 ...

  5. virtualbox 最小化安装centos7 配置双网卡(nat和桥接)记录----已经过期

    该文章已经过期   请参考另一篇文章:virtualbox 安装centos7 配置桥接网卡,实现主机和虚拟机互通,虚拟机可以访问外网,解决无法上网问题   先说明一下为什么要配置双网卡? 配置nat ...

  6. fedora 16 yum yuan

    暑假买了几本Linux的书一直放在书架上没看,周末闲着没事就拿起本<LinuxC从入门到精通>看了起来,初学Linux首先要做的便是在电脑上安装Linux系统.于是按书上的要求下载了Fed ...

  7. 国内不fq安装K8S四: 安装过程中遇到的问题和解决方法

    目录 4 安装过程中遇到的问题和解决方法 4.1 常见问题 4.2 常用的操作命令 4.3 比较好的博客 国内不fq安装K8S一: 安装docker 国内不fq安装K8S二: 安装kubernet 国 ...

  8. 在fedora 31 安装docker

    简介: 本来没啥特别的,但是fedora使用的cgroup版本太高,docker还没跟上来. 就简单介绍一下怎么在fedora上安装docker吧 一:回退cgroup $ sudo dnf inst ...

  9. Centos7安装成功后,网卡配置及更改镜像地址为国内镜像

    Centos7安装成功后,网卡配置及更改镜像地址为国内镜像 一.网卡配置 二.修改网络配置 踩坑一:IPADDR 踩坑二:网关,DNS与本地不一致 重启网络服务 三.镜像修改为aliyun 四.相关知 ...

随机推荐

  1. 使用multimap创建重复键关联容器

    在“使用 <map> 库创建关联容器”一文中,我们讨论了标准库中的 map 关联容器.但那只是 map 容器的一部分.标准库还定义了一个 multimap 容器,它与 map 类似,所不同 ...

  2. win8 iis安装及网站发布

    win8 iis安装及网站发布 系统:win8 环境:vs2012 一:安装IIS 比较win7的安装来说,多选了几个钩钩,不然会报错,偶就遇到这样的错误. 控制面板->程序和功能->启动 ...

  3. Git之 基本常用命令

    Git基本常用命令如下: mkdir:         XX (创建一个空目录 XX指目录名) pwd:          显示当前目录的路径. git init          把当前的目录变成可 ...

  4. [转]FFMPEG视音频编解码零基础学习方法

    在CSDN上的这一段日子,接触到了很多同行业的人,尤其是使用FFMPEG进行视音频编解码的人,有的已经是有多年经验的“大神”,有的是刚开始学习的初学者.在和大家探讨的过程中,我忽然发现了一个问题:在“ ...

  5. 【英语】Bingo口语笔记(71) - shit系列

  6. Centos6.5自带mysql的启动

    CentOS6.5选择web server版本,安装完以后,用rpm -qa | grep mysql 发现已经安装, 但是使用service mysqld start 显示mysqld命令不存在,后 ...

  7. OpenGL学习之路(二)

    1 引子 在上一篇读书笔记中,我们对书本中给出的例子进行详细的分析.首先是搭出一个框架:然后填充初始化函数,在初始化函数中向OpenGL提供顶点信息(缓冲区对象)和顶点属性信息(顶点数组对象),并启用 ...

  8. python 传入参数返回的时候好像有些时候会出现莫名其妙的循环

    def handle_field(name, s_len, s): #some code #return s would error but return not.... #return s for ...

  9. hdu 1023(java实现进度计算)

    题意:就是问你火车出战的方案数. 分析:卡特兰数的模板题,递推公式:a[n]=a[n-1]*(4*n-2)/(n+1). java代码实现: import java.util.*; import ja ...

  10. iOS 复选框风格转换 Switchery 开关效果

    Switchery 是个简单的 JavaScript 组件,只要几个简单的步骤就可以帮助用户把默认的 HTML 复选框转换成漂亮 iOS 7 样式风格.用户可以很方便的自定义这种转换,所以可以很好的配 ...