Cute Panda ¼¶¼g©ó¤å³¹ <7lps59$kk2$1@news.seed.net.tw>...
>Dear Friend,
>
>
>    I'm using RedHat V6.0 but I cannot find the driver for DLink 530TX and
>WinFast S700, when I choose the NE2000 and compatible for DLink 530TX, the
>system
>is unable to probe that car(not found), and which chip set should I choose
>for
>WinFast S700 ?
>
I can help you on your 530xt only:

According to :
http://www.dlink-intl.com/Technical/info.nsf/626e6035eadbb4cd85256499006b15a
6/3a89cc0aa672870948256758005d6cc7?OpenDocument

===========================================================
1. Download the driver source code (via-rhine.c)

http://cesdis.gsfc.nasa.gov/linux/drivers/test/via-rhine.c
or
ftp://ftp.cis.nctu.edu.tw/Linux/mirrors/cesdis/drivers/via-rhine.c

2. Copy the driver source code form floppy disk to a source directory.
#mkdir /usr/src/via
#mount -t msdos /dev/fd0 /mnt
#cp /mnt/via-rhine.c /usr/src/via/via-rhine.c
3. use gcc to compile via-rhine.c in the /usr/src/via directory
gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -c
via-rhine.c
4. copy via-rhine.o into the /lib/modules/2.0.36-0.7/net/ directory
cp via-rhine.o /lib/modules/2.0.36-0.7/net/via-rhine.o
5. in the /etc directory, edit conf.modules to add a statement
alias eth0 via-rhine
6. use "netconf" to setup the network configuration
select "Basic host information"
Adapter 1
[X] Enabled
(o) Manual ( ) Dhcp ( ) bootp
specify your "IP address" and "Netmask"
Net device eth0
Kernel module via-rhine
7. in /etc/rc.d directory, edit rc.local to add a statement
insmod /lib/modules/2.0.36-0.7/net/via-rhine.o
8. reboot the PC
============================================================