X not loading properly

Asked by John Brooks

After I select ubuntu from the GRUB menu, it will display the splash screen and show that ubuntu is loading, and when the loading is done, instead of being greeted by the login screen, I get some random colors and the word ubuntu repeated all the way across the top of the screen. I see the junk at the top of the screen right after the ubuntu loading screen with the red gradient.

When it is displaying the junk at the top of the screen, the rest of the screen is blank and the keyboard and mouse don't work. The screen will flicker a few times, and then not respond to anything except holding the power button down several seconds. This obviously renders ubuntu unusable.

If I boot into recovery mode and drop to root shell prompt, I can use the shell, but if I try to load X it will fail as explained above. So I DO have a root bash shell I can access.

I have tried to boot into recovery mode and use xfix, but the same thing happens. How can I fix this problem? I am using Ubuntu 9.04 Jaunty.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
actionparsnip
Solved:
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

boot to root shell and run:

dpkg-reconfigure xserver-xorg

Is this a fresh install. What has changed to cause this issue?

Revision history for this message
John Brooks (frogging101) said :
#2

I tried the command, but it didn't work.

Since the installation, i have installed fglrx driver for my ATI graphics card. I have other problems such as not being able to use an external monitor without both screens going blank on login. If I have the externaal plugged in while I log in to ubuntu, both screens will go blank. If I plug it in afterward, and try to enable it and set the resolution, ubuntu just gets really slow and the display proporties window just freezes, same thing with the ATI catalyst control center..

Revision history for this message
Best actionparsnip (andrew-woodhead666) said :
#3

if you uninstall the ati driver it will get you an x server, if you boot to recovery root console and run:

sudo nano /etc/X11/xorg.conf

And change:

Section "Device"
    Identifier "Configured Video Device"
EndSection

to

Section "Device"
    Identifier "Configured Video Device"
    Driver "vesa"
EndSection

Then it will force the failsafe driver to be used.

Revision history for this message
John Brooks (frogging101) said :
#4

Thanks actionparsnip, that solved my question.

Revision history for this message
John Brooks (frogging101) said :
#5

Thank you for all your help actionparsnip.