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
- Create directories /run and /run/lock
- Move contents of /var/run into /run and /var/lock into /run/lock
- Delete directories /var/run and /var/lock
- Create replacement simlinks
- 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 =)
The post missed to mention about deleting contents of the dbus.
sudo rm /run/dbus/*
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
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