码迷,mamicode.com
首页 > 其他好文 > 详细

Dell R420安装Debian6.0.2 amd64和Debian6.0.2_i386系统后网卡驱动安装

时间:2016-12-29 20:37:27      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:dell r420 网卡驱动

最近一个公司里的古老项目重新上线运行,用的操作系统版本低,是Debian6.0.2_i386的,服务器是Dell R420的这样就出现了系统安装后无法找到网卡驱动的问题,本文记录下来,要不以后找不到了。

### 网卡驱动下载

http://down.51cto.com/data/2274577


### For Debian6.0.2_amd64


# apt-get install  build-essential


# unmae -r   //得到内核版本信息,例如:2.6.32-5-amd64

# apt-get install inux-headers-2.6.32-5-amd64   //关盘安装对应内核版本信息

# tar zxvf tg3-3.129d.tar.gz

# cd tg3-3.129d

# make

# insomd tg3.ko

# make install

# vim /etc/network/interfaces     //配置IP地址

# reboot

# 核查是否安装成功

# lsmod |grep tg3

# ls -l /lib/modules/2.6.32-5-amd64/kernel/drivers/net |grep tg3




### For Debian6.0.2_i386


# 说明:无大内存识别时,可以查考以上 adm64安装过程

# 以下是安装了大内存识别软件包后,安装网卡驱动


# apt-get install  build-essential

# 核查是否安装 gcc-4.3,若安装的是 gcc-4.4需要重新安装 gcc-4.3

# aptitude install gcc-4.3   //关盘安装


# Debian官网下载以下deb软件包

linux-headers-2.6.32-5-686-bigmem_2.6.32-48squeeze3_i386.deb

linux-headers-2.6.32-5-common_2.6.32-48squeeze3_i386.deb

linux-image-2.6.32-5-686-bigmem_2.6.32-48squeeze3_i386.deb

linux-kbuild-2.6.32_2.6.32-1_i386.deb


# dpkg -i *.deb   //安装以上 deb 软件包

# reboot


# tar zxvf tg3-3.129d.tar.gz

# cd tg3-3.129d

# make

# insomd tg3.ko

# make install

# vim /etc/network/interfaces     //配置IP地址

# reboot

# 核查是否安装成功

# lsmod |grep tg3

# ls -l /lib/modules/2.6.32-5-686-bigmem/kernel/drivers/net |grep tg3


本文出自 “老瓦房” 博客,请务必保留此出处http://laowafang.blog.51cto.com/251518/1887376

Dell R420安装Debian6.0.2 amd64和Debian6.0.2_i386系统后网卡驱动安装

标签:dell r420 网卡驱动

原文地址:http://laowafang.blog.51cto.com/251518/1887376

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!