At Wednesday, 20 February 2002, you wrote:

>Dear list,
>
>I have Potato installed on an old 486.
>
>Using a EtherExpress Pro card I can insert the module and card properties 

>manually but where do I put the information to make it permanent?
>
>I have put in the module in /etc/modules
>eg eepro irq=10 io=0x300

Create a file /etc/modutils/local
In that file put your local module requirements

i.e 
alias eth0 eepro
options eepro irq=10 io=0x300

Then run update-modules ( as root ) from the command line.
man update-modules
This creates your /etc/modules.conf

To make the module load each boot time, put eth0 on a line in /etc/modules

>
>What is the format for /etc/networks/interface?

Interfaces listed on the "auto" line are bought up at boot time.
Also, see "man interfaces"

<snip from mine>
auto lo
iface lo inet loopback

# BIG NOTE!!!!!
# The pcmcia package doesn't use this file.
# See /etc/pcmcia/network.opts
# automatically added when upgrading

eth0
iface eth0 inet static
    address <your ip>
    netmask <your netmask>
    up <command to run when interface comes up, I set routes here>
    down < command to run when iface goes down, I delete routes here> 


<end snip>

Steve

-- 
Black holes were created when God divided by 0.

http://www.helmsdeep.net/capn-k/
Linux | Windows | CAD | Audio Visualisation and more







-- 
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

Reply via email to