Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I installed the updates through the update manager today. I shut down my Laptop and now after starting it up again, I only get terminal access to advices.

Grub is loading fine and after I picked Ubuntu 12.04 the screen get blank and I am asked to log in with my username and password in command line mode. If I log in I am still in command line mode.

How do I get the "normal (graphical)" Ubuntu back? I hope you know what I mean. Since English is not my first language I can't explain this the way I would like to.

Mark

share|improve this question
does your laptop come with nvidia graphics card? Also could you please run in the terminal after you log in the following startx and post the results here – thenoone May 2 '12 at 16:01
Nope, my laptop comes with an ATI Graphics Card. I will reboot and post the results of startx (Right now I am online with Win7) – Mark May 2 '12 at 16:03
Does startx work for you? sorry I will wait then – thenoone May 2 '12 at 16:04
if I enter startx in command line after log in into ubuntu a lot of stuff is shown but after "Checking battery status [ok]" the system freezes. – Mark May 2 '12 at 16:20
show 13 more comments

closed as off topic by Jorge Castro, Mik, Jacob Johan Edwards, jokerdino, Tom Brossman Sep 29 '12 at 17:32

Questions on Ask Ubuntu are expected to relate to Ubuntu within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

I also faced the same problem. It's the process beyond battery check, I suspect it's choice of display manager - lightdm or gdm, 12.04 uses lightdm. I did a fresh install. I did not have 12.04 CD. So installed 11.10, then upgraded, then installed the package list from my other laptop to have my complete list of software back. Hope this helps.

share|improve this answer

Try pressing ctrl+alt+F7 to switch to a graphic mode. If that doesnt work try checking your fglrx display driver info by running a command in the terminal - flgrxinfo

If that states something like this -

display: :0.0  screen: 0
OpenGL vendor string: Advanced Micro Devices, Inc.
OpenGL renderer string: AMD Radeon HD 6500M/5600/5700 Series
OpenGL version string: 4.2.11631 Compatibility Profile Context

then your grphics driver is not missing

share|improve this answer
Marks got a amd in his laptop – borax12 Jun 25 '12 at 8:50

I hope you didn't do a clean install yet. In most cases there's an easy fix for everything!

with this particular problem please try resetting your graphic drivers to the 'out-of-the-box' state. Please enter the following commands,

IF YOU'VE INSTALLED THE DRIVERS FROM SOFTWARE CENTER OR 'ADDITIONAL DRIVERS' :

sudo apt-get remove --purge xorg-driver-fglrx fglrx*
sudo apt-get remove --purge fglrx*
sudo apt-get install build-essential cdbs fakeroot dh-make debhelper debconf libstdc++6 dkms libqtgui4 wget execstack libelfg0 dh-modaliases
sudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.old
sudo dpkg-reconfigure xserver-xorg

IF YOU'VE INSTALLED FROM ATI HOMEPAGE :

sudo sh /usr/share/ati/fglrx-uninstall.sh
sudo apt-get remove --purge fglrx*
sudo apt-get install build-essential cdbs fakeroot dh-make debhelper debconf libstdc++6 dkms libqtgui4 wget execstack libelfg0 dh-modaliases
sudo apt-get install --reinstall xserver-xorg-core libgl1-mesa-glx libgl1-mesa-dri 
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.old
sudo dpkg-reconfigure xserver-xorg

Reboot.
Ubuntu should now boot in graphical mode.
If you wish you can reinstall the ATI drivers again, or just use the open-source drivers
(whatever suits your needs)

share|improve this answer

protected by Community Sep 30 '12 at 9:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.