failed ao carregar o sistema! networking interfaces

Iniciado por phs22, 31 de Agosto de 2006, 14:18

tópico anterior - próximo tópico

phs22

Pessoal meu problema eh o seguinte, eu configuro a internet pelo sudo pppoeconf, soh toda vez q eu inicio o pc eu tenho de configura-la, jah fiz tudo o que esta no tutorial fixo no sub-forum de internet e nada, soh que eu percebi que na hora que o sistema estah carregando tem dois serviços que estao aparecendo failed são eles.


Starting basic networking...                                                failed
Configuring networking interfaces...                                     failed


como eu resolvo estes problems, meu ubuntu eh 6.06.

Segue abaixo o código do arquivo "networking".


vlw#!/bin/sh -e
### BEGIN INIT INFO
# Provides:          networking
# Required-Start:    mountvirtfs ifupdown $local_fs
# Default-Start:     S
# Default-Stop:      0 6
### END INIT INFO

PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"

[ -x /sbin/ifup ] || exit 0

. /lib/lsb/init-functions


case "$1" in
start)
log_action_begin_msg "Configuring network interfaces"
        type usplash_write >/dev/null 2>/dev/null && usplash_write "TIMEOUT 120" || true
if [ "$VERBOSE" != no ]; then
    if ifup -a; then
log_action_end_msg $?
    else
log_action_end_msg $?
    fi
else
    if ifup -a >/dev/null 2>&1; then
log_action_end_msg $?
    else
log_action_end_msg $?
    fi
fi
        type usplash_write >/dev/null 2>/dev/null && usplash_write "TIMEOUT 15" || true
;;

stop)
if sed -n 's/^[^ ]* \([^ ]*\) \([^ ]*\) .*$/\2/p' /proc/mounts |
grep -qE '^(nfs[1234]?|smbfs|ncp|ncpfs|coda|cifs)$'; then
    log_warning_msg "not deconfiguring network interfaces: network shares still mounted."
    exit 0
fi

log_action_begin_msg "Deconfiguring network interfaces"
if [ "$VERBOSE" != no ]; then
    if ifdown -a --exclude=lo; then
log_action_end_msg $?
    else
log_action_end_msg $?
    fi
else
    if ifdown -a --exclude=lo >/dev/null 2>/dev/null; then
log_action_end_msg $?
    else
log_action_end_msg $?
    fi
fi
;;

force-reload|restart)
log_action_begin_msg "Reconfiguring network interfaces"
ifdown -a --exclude=lo || true
if ifup -a --exclude=lo; then
    log_action_end_msg $?
else
    log_action_end_msg $?
fi
;;

*)
echo "Usage: /etc/init.d/networking {start|stop|restart|force-reload}"
exit 1
;;
esac

exit 0