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.


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

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
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.