QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 838|回复: 3

D-Link DFE-530TX网卡不能安装

[复制链接]
发表于 2003-12-13 10:15:22 | 显示全部楼层 |阅读模式
系统RH9,友讯D-Link DFE-530网卡。安装光盘带dlkfet-4.24驱动,按安装文本提示。
1、解压缩。
2、make install 运行提示:
mkdir -p /lib/modules/2.4.20-8/kernel/drivers/net
install -m 644 -o root rhinefet.o /lib/modules/2.4.20-8/kernel/drivers
/net
/sbin/dempod -a||true
查看/lib/modules/2.4.20-8/kernel/drivers/net/下有文件rhinefet.o
3 、alias eth0 rhinefet
运行提示:
bash : alias : eth0 : not found
bash : alias : rhinefet : not found
请看一看出了什么问题?如何才能安装这张网卡驱动?
发表于 2003-12-15 14:06:24 | 显示全部楼层
D-link530 RevB1 PCI网卡的安装:
   系统支持D-link530 RevA PCI的网卡,但是后来D-link有出了个RevB1,多了WOL,所以原来的驱动via-rhine.o就不灵了,需要我们自己做一个驱动程序,很简单的。

编辑via-rhineB.c
static struct pci_id_info pci_tbl[] = {
{ "VIA VT86C100A Rhine-II", 0x1106, 0x6100, 0xffff,
PCI_USES_MEM|PCI_USES_IO|PCI_USES_MEM|PCI_USES_MASTER,12
8,via_probe1},
{ "VIA VT3043 Rhine", 0x1106, 0x3043, 0xffff,
PCI_USES_IO|PCI_USES_MEM|PCI_USES_MASTER, 128,via_probe1},
{ "VIA VT3043 Rhine RevB1", 0x1106, 0x3065, 0xffff,
PCI_USES_IO|PCI_USES_MEM|PCI_USES_MASTER, 128,via_probe1},
{0,}, /* 0 terminated list. */ };

然后修改 /usr/src/linux/drivers/net/Config.in
tristate \\'PCI NE2000 support\\' CONFIG_NE2K_PCI
tristate \\'TI ThunderLAN support\\' CONFIG_TLAN
tristate \\'VIA Rhine support\\' CONFIG_VIA_RHINE
tristate \\'VIA Rhine RevB support\\' CONFIG_VIA_RHINEB
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then

然后修改 /usr/src/linux/drivers/net/Makefile
ifeq ($(CONFIG_VIA_RHINE),y)
  L_OBJS += via-rhine.o
  else
     ifeq ($(CONFIG_VIA_RHINE),m)
       M_OBJS += via-rhine.o
     endif
endif
ifeq ($(CONFIG_VIA_RHINEB),y)
  L_OBJS += via-rhineB.o
  else
     ifeq ($(CONFIG_VIA_RHINEB),m)
       M_OBJS += via-rhineB.o
     endif
endif

配置kernel: make menuconfig
Networking device support --> Ethernet (10 or 100Mbit)

在新出现的 Via rhine Ver B一项前按 M
退出配置
make dep
make modules
make modules_install

如果/lib/modules/2.2.14-5.0/net/via-rhineB.o存在的话,我们就有戏拉。然后在这个目录下执行insmod via-rhineB.o,如果没有错误提示,就成功拉。
回复

使用道具 举报

发表于 2003-12-16 23:43:31 | 显示全部楼层
alias eth0 rhinefet 不是输入这个命令吧,好像是把这个加到某个配置文件里,我的也是这个网卡,光盘上有详细说明,照做一定能行。
回复

使用道具 举报

发表于 2003-12-16 23:54:05 | 显示全部楼层
alias eth0 rhinefet是加入到/etc/modules.conf中。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-6 14:26 , Processed in 0.041643 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表