Hi masterx
the site is off-line at this time. do you have notice when go on-line?
That site was create by someone else and is not associated with tinycorelinux.net, see:
http://forum.tinycorelinux.net/index.php/topic,13485.msg74916.html#msg74916Create a script called eth0.sh in /opt that contains the following:
#!/bin/sh
pkill udhcpc
ifconfig eth0 192.168.1.30 netmask 255.255.255.0 broadcast 192.168.1.255 up
route add default gw 192.168.1.1
echo nameserver 68.237.161.12 > /etc/resolv.conf
echo nameserver 71.243.0.12 >> /etc/resolv.conf
Adjust eth0 and the IP addresses to match your system. Run the script and your network card should be configured.
Add a line that looks like:
/opt/eth0.sh
to your /opt/bootlocal.sh file. This will set up your network card every time you boot.
Be sure to read the Wiki on how to backup these changes.