boot delayed waiting for network when wired

Asked by William Haynes

at 12.04 LTS

boot process post "Waiting for Network Configuration" and then "Waiting up to 60 seconds for network configuration" every time I have to boot after shutdown

system is hardwired to network and when boot process concludes network responds just fine

what do I need to do to get past this "wait" and speed up the boot process?

was running 10.10 LTS until this summer and never had this issue.

thanks
bill

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu gnome-nettool Edit question
Assignee:
No assignee Edit question
Solved by:
actionparsnip
Solved:
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

10.10 isn't LTS, 10.04 is LTS

Did you upgrade from 10.10 to 12.04 directly?

Revision history for this message
William Haynes (william-haynes) said :
#2

you are correct, 10.04 is LTS
no, did not upgrade directly from 10.04 to 12.04, that option was not available
did step-by-step upgrade to 12.04

bill

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#3

If it's hard wired, you can remove network manager and use the /etc/network/interfaces file, it may boot faster.

Revision history for this message
William Haynes (william-haynes) said :
#4

how do you remove network manager & what do I need to do to use /etc/network/interfaces file?

what does network manager do?

bill

Revision history for this message
Best actionparsnip (andrew-woodhead666) said :
#5
Revision history for this message
William Haynes (william-haynes) said :
#6

Tried this...failed
here is what my /etc/network/interfaces file looks like
in my attempt to follow your instructions, I removed # from beginning of line 10 & 11 & rebooted
system booted faster but network did not connect and had to comment lines out & reboot
help me understand what I am missing.

bill

  1 # This file describes the network interfaces available on your system
  2 # and how to activate them. For more information, see interfaces(5).
  3
  4 # The loopback network interface
  5 auto lo
  6 iface lo inet loopback
  7
  8 # The primary network interface
  9
 10 #auto eth0
 11 #iface eth0 inet dhcp
 12
 13 # vbox
 14 auto tap0
 15 iface tap0 inet manual
 16 up ifconfig $IFACE 0.0.0.0 up
 17 down ifconfig $IFACE down
 18 tunctl_user bill
 19
 20 auto br0
 21 iface br0 inet dhcp
 22 bridge_ports all tap0
23
 24 iface eth0 inet static
 25 address 192.168.0.7
 26 netmask 255.255.255.0
 27 gateway 192.168.0.1
 28
 29 auto eth0

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#7
Revision history for this message
William Haynes (william-haynes) said :
#8

doubt that the 11-10 solution will work here
not getting black screen after 60-sec wait, but boot continues

/run and /run/lock directories already exist

bill

Revision history for this message
William Haynes (william-haynes) said :
#9

problem solved
went back into /etc/network/interfaces

saw that there was a 2nd dfn for eth0 w/static, old IP
removed this and reinstated

auto eth0
iface eth0 inet dhcp

then shutdown
on restart message reappeared
this time however there was a fan-like symbok (network) on the top tool bar
opened the eth0 configuration and put in the MAC address
saved & shutdown
or restart message re Waiting for Network Configuration did not reappear

thank all of you for your suggestions & help
bill

Revision history for this message
William Haynes (william-haynes) said :
#10

Thanks actionparsnip, that solved my question.