Ubuntu 11.10 Oneiric Ocelot was released last week, and has brought a few issues with it. One distressing new feature I found was that when booting it would hang for around a minute with the message ‘Waiting for network configuration…’ and then hang again with the message ‘Waiting up to 60 more seconds for network configuration…’.
I have found the cause of this is having any interfaces defined in /etc/network/interfaces ( besides lo ) defined as auto. To correct this problem, the recommended solution is to remove your interfaces from this file, and set them up with network manager. Leaving /etc/network/interfaces looking like the default:
auto lo iface lo inet loopback
In my case, my network needs a bridge to operate, and since network manager does not allow to configure bridges, it MUST be defined in this file.
So, the only other solution must be to edit ‘Waiting for network configuration…’ script. This script is actually located here: /etc/init/failsafe.conf
Around 25 lines down in the file you will see a section:
# 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..." || :
To solve the problem, you can just remove the calls to sleep, by commenting the out ( or at least reduce the wait time if your network really does need to wait )
# 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..." || :
Pingback March 1, 2012: Ubuntu 11.10 disable "Waiting up to 60 more seconds for network configuration"
Pingback May 4, 2012: Ubuntu 11.10 Waiting up to 60 more seconds for network configuration fix | Busted Engineering
Pingback February 3, 2013: Ubuntu 11.10 Waiting up to 60 more seconds for network configuration…
Pingback February 3, 2013: Como configurar rede IEEE1394 (FireWire) no Ubuntu 10.10
Pingback March 9, 2014: Relinux - "waiting for network configuration" problem - Tech Forum Network
Pingback June 6, 2014: Ubuntu 11.10 disable "Waiting up to 60 more seconds for network configuration"
Pingback February 3, 2015: Ubuntu 14.10 “Waiting for network configuation…” | Deepak D
Pingback March 13, 2016: How to fix Ubuntu server 13.04 slower boot when network cable is unplugged - UbuntuHub
Pingback June 12, 2017: 解决Ubuntu12.04开机waiting for network configuration问题 | OSV智能桌面虚拟化-技术支持中心
Pingback December 14, 2017: ITWorld
Pingback February 10, 2018: Ubuntu 11.10 Waiting up to 60 more seconds for network configuration…