0

I have problem with my computer (with ubuntu...). So, I'v (not?) installed NVIDIA graphic drivers, but (apparently ineptly) after reboot, I see loading screen, but later I see only black screen with underscore in left upper corner. :( I don't have access to terminal... (I can use him, but only sometimes for 1 second... after one second screen is black.)

Do you have an idea how I can fix it? :/

NVIDIA geforce 210, Ubuntu 14.04.1

Melon
  • 511
  • 1
    What hardware? What graphics card? What Ubuntu version? Please reedit your post and include this information – Melon Nov 30 '14 at 10:44
  • Sorry. Is it enought?:/ – Patric Newtons Nov 30 '14 at 10:48
  • That's good. Now, was Ubuntu running fine before and you installed something that led to this situation? Or you didn't even manage to see Ubuntu running? – Melon Nov 30 '14 at 10:51
  • Before "installation", everything was fine for over a month.

    I used ↑, when ubuntu was loading and I saw "Starting SMB/CIFS Fille nad Active Directory Server [FAIL]". Do it can be my problem?

    – Patric Newtons Nov 30 '14 at 11:07
  • Don't think that this might be the problem. I remember that there were some problems with the nvidia drivers. You should revert those changes for the moment. In overall, if accelaration works, you can watch vidoes, than you shouldn't upgrade the drivers. I spent one week downloading and installing drivers and in the end it turned out I didn't need them (; – Melon Nov 30 '14 at 11:17
  • Well, maybe I too don't need drivers. Do you have an idea how I can recover some files from my PC and how I can reinstall ubuntu? (When I boot him from USB, I have menu without reinstall option. (I can only start ubuntu or memory test.)) – Patric Newtons Nov 30 '14 at 11:47

1 Answers1

0

If you want to try to recover some files from your computer before attempting to fix or reinstall Ubuntu, boot from the Ubuntu live CD/USB and select 'Try Ubuntu' - you will be able to view the files on your HDD and copy them to a second USB.

To fix your video problems, there are two items that you can try: From this answer, you can boot your computer with nomodeset as a kernel option. This may be enough to make your computer work well.

Secondly, if you want to remove the Nvidia driver, this answer has very good instructions, but you will need to boot to recovery mode first:

Boot up the machine, and after the BIOS screen, hold down the left Shift key. You will then be prompted by a menu that looks something like this: enter image description here

I've noticed on some systems that timing when to hit the left Shift key can be tricky, sometimes I miss it and need to try it again.

Hit the down arrow until you select the 2nd entry from the top (the one with the recovery mode in the description) and then hit Enter.

Now you should see this menu:enter image description here

Use the arrow keys to scroll down to netroot, the root shell with networking. This will take a little time to open, but will get there.

Then a series of 4 commands should be run. The first removes the nvidia packages, the second re-installs the Ubuntu desktop (there is a package nvidia-common which is needed but removed in the first step), the third removes the Xwindows configuration files that were modified by the nvidia installation, and the last ensures that the stock video driver in not blacklisted.

sudo apt-get remove --purge ^nvidia
sudo apt-get install ubuntu-desktop
sudo rm /etc/X11/xorg.conf
echo 'nouveau' | sudo tee -a /etc/modules

Following this, reboot your computer with sudo reboot

Charles Green
  • 21,339