Desabilita serviços de configuração de rede durante o tempo de inicialização

7

Eu instalei o ubuntu 12.04 depois de inicializá-lo, levando mais tempo para a configuração da rede. isso acontece antes do login. como desabilitar esses serviços, você poderia nos ajudar.

    
por Vijay Nalawade 08.09.2012 / 18:37

2 respostas

12

Um melhor objetivo do que desativar o serviço é remover o tempo de inatividade. Para fazer isso, abra /etc/init/failsafe.conf com seu editor favorito e, na linha 25, você verá as seguintes linhas de código:

# Plymouth errors should not stop the script because we *must* reach
# the end of this script to avoid letting the system spin forever
# waiting on it to start.
$PLYMOUTH message –text=”Waiting for network configuration…” || :
sleep 40
$PLYMOUTH message –text=”Waiting up to 60 more seconds for network configuration…” || :
sleep 59
$PLYMOUTH message –text=”Booting system without full network configuration…” || :

Para resolver seu problema, apenas comente os tempos de sono (adicione '#' na frente do texto). Deve ficar assim:

# Plymouth errors should not stop the script because we *must* reach
# the end of this script to avoid letting the system spin forever
# waiting on it to start.
$PLYMOUTH message –text=”Waiting for network configuration…” || :
#sleep 40
$PLYMOUTH message –text=”Waiting up to 60 more seconds for network configuration…” || :
#sleep 59
$PLYMOUTH message –text=”Booting system without full network configuration…” || :
    
por Marius Cotofana 08.09.2012 / 19:18
5

Em /etc/init/rc-sysinit.conf

substituir:

start on (filesystem and static-network-up) or failsafe-boot

com:

start on (filesystem) or failsafe-boot
    
por user140451 15.03.2013 / 08:40

Tags