2

I have little knowledge about ubuntu, but I am learning. Recently, my ubuntu 12.04 required that I update. I noticed that it was updating xorg and other things, after the update I was asked to reboot. I did. now when I start that computer up, it cannot detect any display and refuses to boot from usb. I have no idea how to recover my computer. It simply starts in what is akin to the terminal program and ask for my username and password. After that, I can enter commands.

The problem may be because I manually installed drivers by copy pasting from some instructional that I now have no idea where they are, but what it amounts to is that I "built" the drivers. They were working GREAT until this update. I did this because otherwise I was unable to have sound through my hdmi. After I hand built the drivers, they worked great. After this update Ka-blam! nothing...

Also, I had okay-ed lots of update sources (though all of them [xorg and such] were the stable versions, not the unstable update sources)

Please help and thank you in advance. (if this is posted incorrectly or misplace, please let me know what to do)

Michael
  • 21

1 Answers1

0

I think that:

  • your ATI drivers may have not been well installed
  • and that the free drivers have been removed.


So I suggest you to:

1 - uninstall ATI drivers doing this

$ sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev*


2 - install the free drivers

$ sudo rm /etc/X11/xorg.conf
$ sudo apt-get install --reinstall libgl1-mesa-glx:i386 libgl1-mesa-dri:i386 xserver-xorg-core
$ sudo dpkg-reconfigure xserver-xorg


3 - reboot

$ sudo reboot


4 - check if your graphic card works correctly with the free drivers


5 - if your problem is solved after step 1 to 4, and you still want to install ATI drivers

Then to get the instructions to re-install your ATI drivers, if your card is a Radeon HD 3xxx or HD 4xxx: follow this answer starting directly at Download driver part.

Boris
  • 5,012