Author Topic: [SOLVED]Booting only to text console after first update  (Read 787 times)

hanspb

  • Guest
[SOLVED]Booting only to text console after first update
« on: October 22, 2010, 01:45:11 PM »
Hi, first of all, I have read this thread:

http://www.pclinuxos.com/forum/index.php/topic,81337.0.html

and it did not help me, so I have to start a new one even though I seem to have the exact same problem. That thread is about an Nvidia card, I have Ati Radeon XPress 200M. After installation and first round of updates, the next boot ends in a text console. When I try to start X with startx, I get the mouse pointer and a message in a very basic window, saying

Code: [Select]
Could not start D-Bus. Can you call qdbus?

I have tried to edit xorg.conf and substitute "ati" with "vesa", but it did not help.

Edit: I tried after the startx error message to run 'qdbus' and I got the following:

Could not connect to D-Bus server: org.freedesktop.DBus.Error.Spawn.ExecFailed: /usr/bin/dbus-launch terminated abnormally with the following error: Autolaunch error: X11 initialization failed.
« Last Edit: October 23, 2010, 05:11:47 AM by hanspb »

Offline Ramchu

  • Hero Member
  • *****
  • Posts: 1589
Re: Booting only to text console after first update
« Reply #1 on: October 22, 2010, 03:30:42 PM »
Did you try XFdrake from the terminal ?

hanspb

  • Guest
Re: Booting only to text console after first update
« Reply #2 on: October 22, 2010, 03:53:03 PM »
Yes, did that now. No change. My graphics card was not in the list, so I chose the already chosen "Ati Radeon 1950 or earlier". Test image was ok.

Offline Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6379
  • I'm going South
Re: Booting only to text console after first update
« Reply #3 on: October 22, 2010, 04:12:56 PM »
I don't know the reason for your problem. It's quite possibly just related to your video card and I have no experience of Ati cards. But as the error message complains about not being able to start D-Bus, you might first of all try to reinstall dbus-x11.

Open a terminal and su to root. Then run:
Code: [Select]
apt-get update && apt-get install --reinstall dbus-x11
« Last Edit: October 22, 2010, 04:27:20 PM by Bald Brick »
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

Offline Ramchu

  • Hero Member
  • *****
  • Posts: 1589
Re: Booting only to text console after first update
« Reply #4 on: October 22, 2010, 04:15:35 PM »
Found some information here :   http://www2.ati.com/drivers/linux/linux_8.16.20.html

Scroll down to : X Fails to Load on Systems with Linux Kernel Version 2.6.x  

At the bottom of the page is a link to:  support.ati.com

hanspb

  • Guest
Re: [SOLVED]Booting only to text console after first update
« Reply #5 on: October 23, 2010, 05:15:50 AM »
So, I got it ;D. I read the thread above, and it seems one can not update with 'apt-get upgrade'. I tried with 'apt-get dist-upgrade', and then it worked! But I don't know why, can someone enlighten me, please? And thanks for your help, I'll shure be back for more.

Offline Ramchu

  • Hero Member
  • *****
  • Posts: 1589
Re: Booting only to text console after first update
« Reply #6 on: October 23, 2010, 05:56:06 AM »
I don't know the reason for your problem. It's quite possibly just related to your video card and I have no experience of Ati cards. But as the error message complains about not being able to start D-Bus, you might first of all try to reinstall dbus-x11.

This is most likely what solved your problem, when you did the update .

Offline Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6379
  • I'm going South
Re: [SOLVED]Booting only to text console after first update
« Reply #7 on: October 23, 2010, 07:24:39 AM »
So, I got it ;D. I read the thread above, and it seems one can not update with 'apt-get upgrade'. I tried with 'apt-get dist-upgrade', and then it worked! But I don't know why, can someone enlighten me, please? And thanks for your help, I'll shure be back for more.

If there are newer versions of your installed packages apt-get upgrade installs them, but it doesn't check if the dependencies have changed and it never removes an installed package. apt-get dist-upgrade takes care of changing dependencies and resolves conflicts between packages by upgrading the more important ones even if that means that it must remove another package.

This means that on a rolling release apt-get upgrade will sooner or later break your system (even if it at first may sound like the more cautious choice).
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

hanspb

  • Guest
Re: [SOLVED]Booting only to text console after first update
« Reply #8 on: October 23, 2010, 09:09:48 AM »
Well, I learned something new, then :). That's great, and thank you all!