The net-setup script for livecd 6.1v2 errors out at line 128 when starting dhcp.
The command:
if `ip link show eth0 2>/dev/null` |grep -q UP ; then
should read:
if `echo ip link show eth0 2>/dev/null` |grep -q UP ; then
emphasis on the ECHO command to send to grep, otherwise it ries to execute the command "2:: "
/usr/bin/net-setup: line 128 2:: command not found
which is the output of the ip command

Kevin Dawson
linuxfromscratch.info
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to