Solved: Waiting for network configuration – 11.10 upgrade

Hi friends. After the upgrade from 11.04 to 11.10, you can see a major issue, displaying “waiting for network configuration” and will not boot past the Ubuntu splash screen.After few minutes, it says “waiting an additional 60 seconds for network configuration”. After that it says “Booting system without full network configuration”.

The reason for this issue is the change in the Filesystem Hierarchy Standards(FHS).

The following will work for this issue:

According to the recent change, you need to

  1. Create directories /run and /run/lock
  2. Move contents of /var/run into /run and /var/lock into /run/lock
  3. Delete directories /var/run and /var/lock
  4. Create replacement simlinks
  5. Reboot your machine

For the newbies,

Goto terminal and type

sudo su

forĀ  Step 1:

mkdir /run

mkdir /run/lock

Step 2:

mv /var/run /run

mv /var/lock /run/lock

Step 3:

rm /var/run

rm /var/lock

If rm shows some errors, then use ‘rm -rf’

Step 4:

ln -s /run /var/run

ln -s /run/lock /var/lock

points mentioned in Step 4 are examples which you can make use of.

There is no need to explain step 5. ;)

Enjoy the day =)

About Mohi

I am a Free software Advocate and Ubuntu lover. My Wiki: https://wiki.ubuntu.com/Mohan_chml

3 Responses to “Solved: Waiting for network configuration – 11.10 upgrade

  1. Linux devilz

    The post missed to mention about deleting contents of the dbus.

    sudo rm /run/dbus/*

  2. Shar

    Thanks mate u helped me a lot it solved my problems.

    I’m using ethernet bonding and for no reason sometimes the bond wasn’t up. With your solution, all is fine

  3. Actually, that did not work for me.
    I followed the following steps here: http://www.codewhirl.com/2011/10/ubuntu-11-10-waiting-up-to-60-more-seconds-for-network-configuration/

    Hope this helps someone out!
    Regards

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>