Because it appears there are a good many of us that have run into issues during their upgrades from 11.04 to 11.10, resulting in the issues, and similar issues, the ones below, I figured that I would take a minute to cover them and compile a list of proposed solutions.
Please post responses, ideas, tips, suggestions etc and I will update this thread accordingly.
Issues
Issue 1: At boot time, you get a slew of messages akin to this, then X fails to load at all and all you have is TTY...
Issue 2:Code:modem-manager[898]: Could not get the system bus. make sure the message bus daemon is running! message: failed to connect to socket /var/run/dbus/system_bus_socket: connection refused
Issue 3:Code:** (gdm-binary:2292): WARNING **: Couldn't connect to system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: Connection refused
Code:(process:3547): GConf-WARNING **: Client failed to connect to the D-BUS daemon: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
SOLUTIONS
The solutions are suggestions that I have come across on the forums, that have seemed to be working for a good many people. I would suggest that should you be experiencing any of these issues, you give them a try. I encourage feedback on this thread!
First, when the screen goes black and X fails to start, press CTRL-ALT-F1 to drop to TTY1 and login as normal. This will drop you into single-user mode, aka run-level 2
What's happened here? 11.10 had paths changed, and the upgrade tool fails to symlink properly.Code:sudo mv /var/run/* /run/ sudo mv /var/lock/* /run/lock/ sudo rm -r /var/run sudo rm -r /var/lock sudo ln -s /run /var/run sudo ln -s /run/lock /var/lock sudo rm /run/dbus/*
Credit: codac (source)
Note: If you are getting an error re: no such file or directory, try running
prior to running the above block.Code:sudo mkdir /run/lock
TIPS
If you are still having issues, try re-running the sym-link part
If you have issues when you try to sudo update-grub, tryCode:sudo ln -s /run /var/run sudo ln -s /run/lock /var/lock
As a final step, you should also run:Code:sudo ln -s /var/run/ /run/ sudo ln -s /var/lock/ /run/lock/
Code:sudo apt-get clean sudo apt-get update sudo dpkg --configure -a



Adv Reply


Bookmarks