Sebastian Mogilowski's Blog

Just another blog about administration, linux and other stuff

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:Nach dem Update zu Ubuntu 11.10 Oneiric Ocelot bekam ich folgende Meldung wärend des Systemstarts:

Waiting for network configuration

It takes a long time and leads to a black screen.Es dauerte eine Weile und führte zu einem schwarzen Bildschirm.

You can see the following message sometimes, too.Außerdem bekommt man manchmal folgende Meldung:

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/“Die schnelle Lösung war die dbus-Dateien im Verzeichnis „/var/run/dbus/“ zu löschen:

rm /var/run/dbus/*

and reboot the system.und anschließend das System neu zu starten.

But you will get the same problem again after the next reboot.Allerdings wird man das selbe Problem nach dem nächsten Neustart wieder haben.

A stable solution is to move the „/var/run“ and „/var/lock“ directories.Eine stabile Lösung ist es die Verzeichnisse „/var/run“ und „/var/lock“ zu verschieben.

First move all contents from „/var/run“ into „/run“ and from „/var/lock“ into „/run/lock“.Dazu verschiebt man zuerst die Inhalte von „/var/run“ nach „/run“ und die Inhalte von „/var/lock“ nach „/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.Falls man VMWare installiert haben sollte (z.B. den VMWare Player) muss man zuerst „vmblock-fuse“ unmounten, bevor man den Inhalt verschieben kann.

umount /var/run/vmblock-fuse

Now delete „/var/run“ and „/var/lock“:Nun das Verzeichnis „/var/run“ und „/var/lock“ löschen

rmdir /var/run
rmdir /var/lock

and replace them with symlinks to the new destination:und anschließend durch Symlinks ersetzen:

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

Now reboot your system.danach das System neu starten.

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

, ,

16 thoughts on “Fix Ubuntu 11.10 Oneiric Ocelot dbus Problem

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

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

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre, wie deine Kommentardaten verarbeitet werden.