Und das da steht bei ozk auf der Seite:
- - - - - - - - - -
Installation:
As usual, there is no docs included with the driver. Don't think I'll write one either. The driver should be able to drive up to 4 cards (since each card needs 64K for PCI DMA, max 2 cards should be attempted when video-ram is used for DMA), which are then installed as rtk0, rtk1, rtk2 and rtk3. Driving more than on card have not been tested, so no guarantees. If you attempt driving more than one card, let me know how it goes!!
It is very easy to use; Just copy the driver (rtl8139.xif) to your mint or multitos folder and rename according to the PCI DMA base table if necessary. Reboot.
To set up rtk0 to use on a cable-connection with static IP = 234.12.45.2, netmask = 255.255.255.0 and gateway IP = 234.12.45.3 , do;
ifconfig rtk0 addr 234.12.45.2 netmask 255.255.255.0 up
route add default rtk0 gw 234.12.45.3
and the connection should be up running.
I have got adsl connectivity, and have my own network 'behind' the adsl router. This 'local' network have 'inside IP' = 192.168.1.0. The router is the gateway, and its IP = 192.168.1.1. My Hades is given the IP 192.168.1.3 and my PC (cough) is 192.168.1.2. Below are the lines in my /etc/rc.net that sets up my adsl connection through rtk0.
# Setup rtk0 inteface
if [ -f /boot/mint/rtl8139*.xif ]; then
echo "Setup rtk0..."
ifconfig rtk0 addr 192.168.1.3 netmask 255.255.255.0 up
route add 192.168.1.0 rtk0
route add default rtk0 gw 192.168.1.1
fi
- - - - - - - - - -
Ich kann also doch die mint.cnf malträtieren.