Deaktivieren Sie die Netzwerkkonfigurationsdienste während des Startvorgangs

7

Ich habe Ubuntu 12.04 nach dem Booten installiert, was mehr Zeit für die Netzwerkkonfiguration benötigt. Dies geschieht vor dem Anmelden. Wie Sie diese Dienste deaktivieren können, können Sie uns bitte helfen.

Vijay Nalawade
quelle
Mögliches Duplikat ?
Tom Brossman

Antworten:

12

Eine bessere Idee als das Deaktivieren des Dienstes besteht darin, die Ruhezeit zu entfernen. Öffnen Sie dazu /etc/init/failsafe.confIhren bevorzugten Editor, und in Zeile 25 sollten die folgenden Codezeilen angezeigt werden:

# 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…” || :

Um Ihr Problem zu lösen, kommentieren Sie einfach die Ruhezeiten (fügen Sie '#' vor dem Text hinzu). Es sollte so aussehen:

# 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…” || :
Marius Cotofana
quelle
5

Im /etc/init/rc-sysinit.conf

ersetzen:

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

mit:

start on (filesystem) or failsafe-boot
user140451
quelle