- 论坛徽章:
- 0
|
请问哪位知道怎么安装realtek8150网卡的驱动么?\r\n该驱动的guide如下:\r\nThe procedure to activate rtl8150 on linux is as follows:\r\n\r\n step 1: compile:\r\n gcc -DMODULE -D__KERNEL__ -c rtl8150.c\r\n\r\n step 2: insert the driver as module:\r\n insmod rtl8139.o \r\n (run \'lsmod\' to see if the module is inserted)\r\n\r\n step 3: bind your card to an IP address:\r\n\r\n /sbin/ifconfig eth0 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} \r\n (run \'netstat -i\' to see if there is a interface \'eth0\')\r\n\r\n step 4: add your card to IP routing table and add gateway:\r\n /sbin/route add default gw ${GATEWAY} dev eth0\r\n\r\n\r\n*make sure that your kernel is version 2.4.0 above. Otherwise, you have to \r\n upgrade your kernel.\r\n\r\n\r\n//本人在red hat 8.0下编译。 |
|