If I remember correctly, in Slackware 10.2, for rtl8139c you need to load kernel module 8139cp. To load this module at boot time:
- create config file rc.netdevice in /etc/rc.d;
- chmod 0755 /etc/rc.d/rc.netdevice;
- add in rc.netdevice
Code:
/sbin/modprobe 8139cp
#/sbin/modprobe 8139too
- in /etc/resolv.conf add your Name Server (DNS Server):
Code:
nameserver aaa.bbb.ccc.ddd
- in /etc/rc.d/rc.inet1.conf:
Code:
# Config information for eth0:
IPADDR[0]=""
NETMASK[0]=""
USE_DHCP[0]="YES"
DHCP_HOSTNAME[0]=""
# Default gateway IP address:
GATEWAY="aaa.bbb.ccc.d"