Una din problemele intalnite in utilizarea sistemului de operare Ubuntu si la care nu i-am gasit rezolvare decat dupa foarte mult timp a fost la boot-are. Primeam urmatoarele doua mesaje:
"waiting for network configuration"
"waiting up to 60 more seconds for network configuration"
Ajungeam astfel la un timp de boot-are de 3-4 minute.
Am rezolvat aceasta problema folosind urmatoarea solutie:
1. am adus fisierul /etc/network/interfaces la configuratia initiala (implicita), adica inlaturand toate liniile continute in afara de cele de mai jos:
auto lo
iface lo inet loopback
Daca mai este nevoie de configurare ulterioara, este recomandata a se face prin Network Manager.
Mai este de mentionat ca pentru siguranta am facut si un back-up al fisierului interfaces.
2. Inlaturarea celor doua mesaje "waiting for network configuration..." prin editarea scriptului care le genereaza: /etc/init/failsafe.conf
Astfel, in sectiunea de mai jos a scriptului:
# 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..." || :
trebuie comentate cele doua apeluri: sleep 40 si sleep 59, astfel sectiunea va arata asa:
# 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..." || :
Gata, restart pentru verificare.
"waiting for network configuration"
"waiting up to 60 more seconds for network configuration"
Ajungeam astfel la un timp de boot-are de 3-4 minute.
Am rezolvat aceasta problema folosind urmatoarea solutie:
1. am adus fisierul /etc/network/interfaces la configuratia initiala (implicita), adica inlaturand toate liniile continute in afara de cele de mai jos:
auto lo
iface lo inet loopback
Daca mai este nevoie de configurare ulterioara, este recomandata a se face prin Network Manager.
Mai este de mentionat ca pentru siguranta am facut si un back-up al fisierului interfaces.
2. Inlaturarea celor doua mesaje "waiting for network configuration..." prin editarea scriptului care le genereaza: /etc/init/failsafe.conf
Astfel, in sectiunea de mai jos a scriptului:
# 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..." || :
trebuie comentate cele doua apeluri: sleep 40 si sleep 59, astfel sectiunea va arata asa:
# 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..." || :
Gata, restart pentru verificare.
Comentarii
Trimiteți un comentariu