|
发表于 2003-12-28 13:27:35
|
显示全部楼层
-----------------------
安装
-----------------------
1. 将文件 mtd80x-linux-2.4.x.tgz 拷到/tmp 目录
[code:1] mount -t msdos /dev/fd0 /mnt/floppy
cp /mnt/floppy/linux-2.4.x/mtd80x-linux-2.4.x.tgz /tmp[/code:1]
2. 解压缩
[code:1]cd /tmp
tar -zxvf mtd80x-linux-2.4.x.tgz[/code:1]
3. 编译网卡驱动模块
[code:1]touch *
make clean
make[/code:1]
*Under some distribution, such as SuSe 7.2 and BluePoint 2.0, there is no version.h.
You have to run "make config" or "make menuconfig" at /usr/src/linux to create it.
**If you are using Mandrake 8.0 and you have problems when insmod the dirver, please
remove "-DMODVERSIONS" option from makefile.
***On SMP system, the driver may NOT work well. The bug will be fixed in the future.
4. insert 网卡驱动模块
[code:1]insmod pciscan.o
insmod mtd80x.o[/code:1]
5. 给网卡绑定ip
[code:1]ifconfig eth0 {IPADDR} netmask {NETMASK}[/code:1]
6. 可以ping通网络了
*每次你重新起动系统, 你要把第4、5步执行一次
当然你也可以把4、5加到你的boot script中去 |
|