红联Linux门户
Linux帮助

Ubuntu安装DGE-530T网卡驱动

发布时间:2015-12-03 09:47:05来源:linux网站作者:latte_coffee

搭建实验环境需要在ubuntu上安装DGE-530T网卡驱动,搜了一下都是windows的,找到一个Linux的但是因为系统中没有linux/moudle.h,电脑网络又不通,就找了一个方便的方法,用ndiswrapper在Linux环境下安装windows的网卡驱动,记录一下。


一、准备工作

1.下载最新的ndiswrapper包,下载地址 http://sourceforge.net/projects/ndiswrapper ,我下载的是ndiswrapper-1.59.tar.gz
2.准备好无线网卡的win驱动程序,找到相应的inf和sys文件。我这里是net5211.inf、net5211.sys(支持xp)。注:如果驱动程序是exe或者cab格式,用zip或cabextract工具解开,找到相应的文件。


二、安装ndiswrapper

方法一:
1.解压安装包
tar zxvf ndiswrapper-1.59.tar.gz
2.进入解压后的文件夹
cd ndiswrapper-1.59
3.编译
make
4.安装
make install
但是这种方法要求有内核源码,而且很多时候会因为包含的系统文件路径与makefile中提供的路径不统一而编译出错。下面提供第二种方法。
方法二:
1.使用apt-get 自动安装
apt-get install ndisgtk
安装成功后进入驱动文件,安装驱动


三、安装无线网卡驱动

1.进入驱动所在目录,即net5211.inf、net5211.sys所在目录
ndiswrapper –i net5211.inf
2.查看驱动是否安装
ndiswrapper –l
3.写入配置文件
ndiswrapper –m
ndiswrapper –ma
ndiswrapper –mi
4.加载模块
modprobe ndiswrapper
注:如果遇到“FATAL: Module ndiswrapper not found”,
http://sourceforge.net/projects/ndiswrapper/ Download ndiswrapper and then make ->make install
Last reboot your computer,you will see Wireless LED blinking.You secess! congratulation!
遇到这个问题是因为系统没有发现ndiswrapper.ko
先确保是否生成了ndiswrapper.ko
如果没有 apt-get install ndiswrapper-source
m-a prepare
m-a a-i ndiswrapper
modprobe ndiswrapper
就可以了,或者你可以找到编译生成的ndiswrapper.ko文件,放到/lib/modules/2.6.15-28-386/kernel/drivers/net/ndiswrapper/ndiswrapper.ko


四、重启,就可以用无线网啦。


虚拟机VMware下RedHat Linux上网设置(bridged NAT方式)图文详解:http://www.linuxdiyf.com/linux/8736.html

ubuntu14.04下安装BCM4312无线网卡驱动:http://www.linuxdiyf.com/linux/15840.html

ubuntu 15.10在线安装无线网卡驱动,最简单的驱动安装方法:http://www.linuxdiyf.com/linux/15469.html

ubuntu15.04安装Atheros AR8161网卡驱动:http://www.linuxdiyf.com/linux/14451.html