You are not logged in.
Pages: 1
Installed Arch Linux from the AL-AMLUG live cd.
Network is not running. How do you configure it to run?
/etc/rc.conf:
HOSTNAME="*****" # without the domain name
MODULES=(!usbserial !ide-scsi usb-storage printer)
lo="lo 127.0.0.1"
eth0="eth0 ***.***.**.*** netmask 255.255.***.0"
INTERFACES=(lo eth0)
# lo="lo 127.0.0.1"
# eth0="dhcp" # I'm not using dhcp
# INTERFACES=(lo)
gateway="default gw ***.***.**.***"
ROUTES=(gateway)
#
# Daemons to start at boot-up (in this order)
# (prefix a daemon with a ! to disable it)
#
DAEMONS=(syslogd klogd !pcmcia network crond netfs fam cups)
/etc/hosts
<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost
***.***.**.*** *****.*****.hu *****
/etc/host.conf
order hosts,bind
multi on
/etc/resolv.conf
#search <yourdomain.tld>
search *****.hu
#nameserver <ip>
nameserver ***.***.*.**
/etc/rc.d/network start
SIOCSIFADDR: No such device
eth0: unknown interface: No such device
SIOCSIFNETMASK: No such device
SIOCADDRT: Network is unreachable
AMLUG net-install:
Autoconfiguring devices... Done.
PCMCIA Card : No PCMCIA card found.
Ethernet Card: PCI NE2000 Ethernet
Loading Ethernet module: modprobe ne2k-pci.o
NE/2 (ne2000 MCA version) Ethernet
Loading Ethernet module: modprobe ne2.o
rm: cannot remove `/var/lib/pci/dummy.tmp': No such file or directory
/lib/modules/2.4.24-hwd/kernel/drivers/net/ne2.o: init_module: No such device or address
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg
/lib/modules/2.4.24-hwd/kernel/drivers/net/ne2.o: insmod /lib/modules/2.4.24-hwd/kernel/drivers/net/ne2.o failed
/lib/modules/2.4.24-hwd/kernel/drivers/net/ne2.o: insmod ne2 failed
Press any key to continue...
# Do you want to use DHCP - No
# Do you want to set up ADSL connection - No
Offline
Hi ariszto.
As long as the following does work as root:
modprobe ne2k-pci
you can change the line in /etc/rc.conf from:
MODULES=(!usbserial !ide-scsi usb-storage printer)
to:
MODULES=(!usbserial !ide-scsi usb-storage ne2k-pci printer)
Regards,
Win
Offline
Pages: 1