|
本人用cable modem 上网,不知道是不是在linux里选择以太网上网方式就可以?
另外,开机的时候 有一项错误
bringing up eth0............[Failed]
是不是我的网卡驱动没装好啊,可是我不知道怎样装。每次用make命令好像都有错误提示,另外我的网卡其中一块是集成的在我的nf2主板南桥MCP芯片上的,也不知道是什么芯片的,另外一块是神州数码的,驱动程序说明如下
<================================================================>
< Digitalchina Networks Limited >
< DigitalChina DCN-530TX Fast Ethernet Adapter >
< SOFTWARE DRIVER SUPPORT >
< >
< Copyright 2002 Digitalchina Networks Limited >
< All Rights Reserved. >
< >
<================================================================>
FOR LINUX KERNEL 2.4
======================
The readme file contains the following information for Accton's DCN-530TX
series (DCN-530TX) Fast Ethernet adapter Linux driver
installation
A. Rebuild the DCN-530TX Linux driver
B. Driver installation
A. Rebuild the DCN-530TX Linux driver
======================================
1. Copy the source code directory to a temporary directory, for example /tmp,
#cp -r tulip /tmp
2. Rebuild the driver using the following command,
#cd /tmp/tulip
#make
Now, you have the new driver object code in the /tmp/tulip directory.
You can go to section B, to install the new driver.
到这一步非常奇怪,make命令似乎不成功,但是在我的/lib/modules/2.4.X/kernel/drivers/net 目录里却有了tulip这个文件夹,而且里面也有tulip.o这个文件。也能运行netconfig
B. Driver Installation
======================
1. Copy the driver object code to net modules directory,
#cp -f /tmp/tulip/tulip.o /lib/modules/2.4.X/kernel/drivers/net
where the 2.4.X is the Linux kernel version,be careful to type the proper path.
2. Load the driver by
#insmod tulip.o
3. Config your network with
#netconfig
or
#ifconfig eth0 xxx.xxx.xxx.xxx
where xxx is your IP
All trademarks or brand names mentioned are properties of their respective companies.
--- End of File --- |
|