[SOLVED] CRUX install problem
Hello all!
Well, I decided to undertake a challenge and install CRUX 2.4 on my old dinosaur of a box, and following not only the CRUX Handbook but also Dapper_Dan's extremely helpful How-to, I've actually gotten through the initial installation. Now there's just one little issue...
I seem to be unable to obtain a dynamic IP address from my modem (no router involved). I can ping my loopback address so at least I know that the NIC was not only detected, but is also enabled. I'm hoping for a bit of help here, cuz after putting it off for a while, I'm really chomping at the bit here to try out this highly touted distro!
Here is my /etc/fstab: Code:
# /etc/fstab: static file system information
#
# <file system> <dir> <type> <options> <dump> <pass>
#/dev/#REISERFS_ROOT# / reiserfs defaults 0 0
/dev/#EXT3FS_ROOT# / ext3 defaults 0 1
#/dev/#XFS_ROOT# / xfs defaults 0 0
#/dev/#SWAP# swap swap defaults 0 0
#/dev/#REISERFS_HOME# /home reiserfs defaults 0 0
/dev/#EXT3FS_HOME# /home ext3 defaults 0 2
#/dev/#XFS_HOME# /home xfs defaults 0 0
#/dev/cdrom /cdrom iso9660 ro,user,noauto,unhide 0 0
/dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0
#/dev/floppy/0 /floppy vfat user,noauto,unhide 0 0
devpts /dev/pts devpts defaults 0 0
none /sys sysfs defaults 0 0
none /proc proc defaults 0 0
tmp /tmp tmpfs defaults 0 0
shm /dev/shm tmpfs defaults 0 0
usb /proc/bus/usb usbfs defaults 0 0
# End of file
And my /etc/rc.d/net Code:
#!/bin/sh
#
# /etc/rc.d/net: start/stop network
#
case $1 in
start)
# loopback
/sbin/ip addr add 127.0.0.1/8 dev lo broadcast + scope host
/sbin/ip link set lo up
# ethernet
/sbin/dhcpcd -t 10 -h $HOSTNAME eth0
;;
stop)
/usr/bin/killall -q /sbin/dhcpcd
/sbin/ip link set lo down
/sbin/ip addr del 127.0.0.1/8 dev lo
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file