LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
楼主: Xiangbuilder

MYSON EP-320X-S 100M/10M 网卡如何驱动?

[复制链接]
发表于 2003-5-11 12:41:52 | 显示全部楼层
# modprobe tulip

然后,用
#insmod tulip

多试几次,然后用redhat-config-network来添加网卡。试一下。
 楼主| 发表于 2003-5-11 13:32:36 | 显示全部楼层
谢谢.
......
[root@localhost root]# insmd tulip
bash: insmd: command not found
[root@localhost root]# redhat-config-network
** (redhat-config-network:1194): WARNING **: could not find handler
`on_cancelButton_clicked'
** (redhat-config-network:1194): WARNING **: could not find handler
`on_deviceNameEntry_insert_tex
t'
** (redhat-config-network:1194): WARNING **: could not find handler
`on_okButton_clicked'
** (redhat-config-network:1194): WARNING **: could not find handler
`on_deviceNameEntry_changed'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_routeAddButton_clicked'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_routeDeleteButton_clicked'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_routeEditButton_clicked'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_hardwareAliasesToggle_togg
led'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_hardwareProbeButton_clicke
d'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_hardwareMACToggle_toggled'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_hardwareAliasesToggle_togg
led'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_ipStaticRadio_toggled'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_ipAutomaticRadio_toggled'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_hardwareProbeButton_clicke
d'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_hardwareMACToggle_toggled'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_routeAddButton_clicked'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_routeDeleteButton_clicked'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_routeEditButton_clicked'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_ipStaticRadio_toggled'

** (redhat-config-network:1194): WARNING **: could not find handler
`on_ipAutomaticRadio_toggled'
(redhat-config-network:1194): Gtk-WARNING **: Loading IM context type 'xim'
failed
......
还是不行.
发表于 2003-5-11 13:44:55 | 显示全部楼层
# insmod  tulip

设置工具在这里

系统设置-》网络
 楼主| 发表于 2003-5-11 19:05:34 | 显示全部楼层
谢谢.
[root@localhost root]# insmod tulip
Using /lib/modules/2.4.18-14/kernel/drivers/net/tulip/tulip.o
/lib/modules/2.4.18-14/kernel/drivers/net/tulip/tulip.o: init_module: No such device
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg
其余信息和以前一样.
发表于 2003-5-13 15:59:38 | 显示全部楼层
Xiangbuilder兄,我感觉是应该设置中断。
台兄想过这方面的吗??不妨来试试看
 楼主| 发表于 2003-5-16 20:08:31 | 显示全部楼层
谢谢.
"设置中断"?
说详细点好吗?
希望原谅我的才疏学浅,我不知道怎么设置.
发表于 2003-5-20 11:02:28 | 显示全部楼层
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg


按下面的办法来试一下。

Universal TUN/TAP device driver.
Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>

  Linux, Solaris drivers
  Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>

  FreeBSD TAP driver
  Copyright (c) 1999-2000 Maksim Yevmenkin <m_evmenkin@yahoo.com>

  Revision of this document 2002 by Florian Thiel <florian.thiel@gmx.net>

1. Description
  TUN/TAP provides packet reception and transmission for user space programs.
  It can be seen as a simple Point-to-Point or Ethernet device, which,
  instead of receiving packets from physical media, receives them from
  user space program and instead of sending packets via physical media
  writes them to the user space program.

  In order to use the driver a program has to open /dev/net/tun and issue a
  corresponding ioctl() to register a network device with the kernel. A network
  device will appear as tunXX or tapXX, depending on the options chosen. When
  the program closes the file descriptor, the network device and all
  corresponding routes will disappear.

  Depending on the type of device chosen the userspace program has to read/write
  IP packets (with tun) or ethernet frames (with tap). Which one is being used
  depends on the flags given with the ioctl().

  The package from http://vtun.sourceforge.net/tun contains two simple examples
  for how to use tun and tap devices. Both programs work like a bridge between
  two network interfaces.
  br_select.c - bridge based on select system call.
  br_sigio.c  - bridge based on async io and SIGIO signal.
  However, the best example is VTun http://vtun.sourceforge.net )

2. Configuration
  Create device node:
     mkdir /dev/net (if it doesn't exist already)
     mknod /dev/net/tun c 10 200

  Set permissions:
     e.g. chmod 0700 /dev/net/tun
     if you want the device only accesible by root. Giving regular users the
     right to assign network devices is NOT a good idea. Users could assign
     bogus network interfaces to trick firewalls or administrators.

  Driver module autoloading
     Make sure that "Kernel module loader" - module auto-loading support is enabled
     in your kernel.

     Add the following line to the /etc/modules.conf:
        alias char-major-10-200 tun
     and run
        depmod -a

  Manual loading
     insert the module by hand:
        modprobe tun

  If you do it the latter way, you have to load the module every time you
  need it, if you do it the other way it will be automatically loaded when
  /dev/net/tun is being opened.
 楼主| 发表于 2003-6-1 13:08:05 | 显示全部楼层
试了几次,上面两个链接是无效链接.
谢谢.
发表于 2003-6-1 13:18:01 | 显示全部楼层
加载一个这个模块来试试看??

fealnx.o
 楼主| 发表于 2003-6-20 10:55:11 | 显示全部楼层
/lib/modules/2.4.18-14/kernel/drivers/net/下
没有fealnx.o.
运行MAKE XCONFIG,  我把10M/100M内的选项全都点了Y.
谢谢.
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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