Sebastian Mogilowskis Blog

Just another blog about administration, linux and other stuff

Language: German English

Fix Ubuntu 11.10 Oneiric Ocelot dbus Problem

After uprade to Ubuntu 11.10 Oneiric Ocelot i get the following message during the system boot:

Waiting for network configuration

It takes a long time and leads to a black screen.

You can see the following message sometimes, too.

Unable to connect to the system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: Connection refused

The quick fix was to delete zu dbus files in “/var/run/dbus/”

rm /var/run/dbus/*

and reboot the system.

But you will get the same problem again after the next reboot.

A stable solution is to move the “/var/run” and “/var/lock” directories.

First move all contents from “/var/run” into “/run” and from “/var/lock” into “/run/lock”.

mv /var/run/* /run/
mv /var/lock/* /run/lock/

Note: If you have installed VMWare you have to unmount “vmblock-fuse”. Before moving the content.

umount /var/run/vmblock-fuse

Now delete “/var/run” and “/var/lock”:

rmdir /var/run
rmdir /var/lock

and replace them with symlinks to the new destination:

ln -s /run /var/run
ln -s /run/lock /var/lock

Now reboot your system.

Links:

* https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/811441

* https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/856810

* http://forum.ubuntuusers.de/topic/nach-upgrade-problem-mit-dem-networkmanager/#post-3473007

, ,

14 Responses to “Fix Ubuntu 11.10 Oneiric Ocelot dbus Problem”

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>

eMail-Benachrichtigung bei weiteren Kommentaren.
Auch möglich: Abo ohne Kommentar.