0

I just upgraded my 12.04 based Dell Inspiron laptop to 12.10 but after the reboot I got a message saying system is running in lower graphics mode. But I'm still not able to access Unity and GNOME. This is with an AMD Radeon HD 7570M graphics card. How do I fix this issue?

3 Answers3

1

I have Ubuntu 12.10 and was getting the same error, so I found this thread and only run:

sudo dpkg-reconfigure xserver-xorg 
sudo reboot

For now this was my solution, hope this help. Thanks!

Matias
  • 11
0

try to go to console and remove the fglrx driver while in low graphic mode press Ctrl+Alt+F1 and login with your user name and password then run

sudo sh /usr/share/ati/fglrx-uninstall.sh
sudo apt-get remove --purge fglrx fglRx_* fglrx-amdcccle* fglrx-dev* xorg-driver-fglrx
sudo apt-get remove --purge xserver-xorg-video-ati xserver-xorg-video-radeon
sudo apt-get install xserver-xorg-video-ati
sudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core
sudo reboot

and also i would recommend to reinstall ubuntu desktop with this command sudo apt-get install --reinstall ubuntu-desktop Maybe it will help.

nanofarad
  • 20,717
  • hi I tried it just now, I was not able to see the UI still hanging out in console. Any other fix? – Jeevan Dongre Oct 22 '12 at 17:26
  • so you removed the fglrx driver and rebooted and still get nothing am i right? Try to reinstall open drivers by executing :sudo apt-add-repository ppa:xorg-edgers/ppa ,sudo apt-get update , sudo apt-get upgrade ,sudo dpkg-reconfigure xserver-xorg , sudo reboot – polarkatenuchie Oct 22 '12 at 17:39
  • let me try this and get back to you then – Jeevan Dongre Oct 22 '12 at 18:21
  • Its not working, after the reboot I got the tty itself. – Jeevan Dongre Oct 22 '12 at 18:35
  • As a final try i would install 3.2.32 kernel via console to see if its fglrx problem cause 12.10 release has grapfic issues (some drivers dont work).3.2.32 kernel works 100 % with fglrx package by default in 12.04 lts. Then id try to install fglrx in console and boot 3.2.32 kernel(advanced option in grub). But all this optional cause it s only my guess that issue is in new kernel version 3.5.4 wich means you have to remove fglrx first to use it because the first rule before installing latest kernel vercion is to remove fglrx proprietary drivers or else it will be black screen. – polarkatenuchie Oct 22 '12 at 18:44
  • Its quite complicated I guess reinstalling 12.04 will do – Jeevan Dongre Oct 22 '12 at 19:40
  • i just ran "startx" its says unable to connect Xorg server, whats the problem – Jeevan Dongre Oct 22 '12 at 19:53
  • To download kernel copy this in console: wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.3-precise/linux-headers-3.3.0-030300-generic_3.3.0-030300.201203182135_amd64.deb kernel.ubuntu.com/~kernel-ppa/mainline//v3.3-precise/linux-headers-3.3.0-030300_3.3.0-030300.201203182135_all.deb kernel.ubuntu.com/~kernel-ppa/mainline//v3.3-precise/linux-image-3.3.0-030300-generic_3.3.0-030300.201203182135_amd64.deb 030300.201203182135_amd64.deb continue to next comment( limit of characters) – polarkatenuchie Oct 22 '12 at 20:00
  • then after all downloaded copy: sudo dpkg -i linux-headers-3.3.0-030300-generic_3.3.0-030300.201203182135_amd64.deb linux-headers-3.3.0-030300_3.3.0-030300.201203182135_all.deb linux-image-3.3.0-030300-generic_3.3.0-030300.201203182135_amd64.deb after that install fglrx: sudo apt-get install fglrx then reconfigure xorg by: sudo dpkg-reconfigure xserver-xorg then sudo reboot & do not forget to chose 3.3 kernel version in advanced grub menu.Hope it will work – polarkatenuchie Oct 22 '12 at 20:18
  • @polarkatenuchie Instead of making multiple over-limit comments, I would edit your post to add these details. – nanofarad Oct 22 '12 at 21:34
  • tnx..installing kernel is optional as it just my thoughts on this issue – polarkatenuchie Oct 22 '12 at 21:40
  • Its not working too !!! I dont want to reinstall the ubuntu I am trying to fix this itself so that I can figure out and help ppl to fix the same issue – Jeevan Dongre Oct 23 '12 at 06:30
0

For Intel integrated graphics on Core processors, it seems that lightdm is the culprit and workarounds are add a delay in rc.local or install and use gdm. Launchpad seems to think that lightdm is too fast at querying for a display and people are saying SSDs can contribute to this race condition. Not sure if this would help you.

Krista K
  • 343