0

I have never used a linux distribution before in my life.

After downloading Ubuntu 13.10 because it is the only one compatible with my motherboards onboard lan, I wanted to install the drivers for my gtx 760. I downloaded them directly from the Nvidia site. Upon rebooting Ubuntu would not load the desktop and would only display that it wanted to load low graphics mode.

I have tried each solution in this thread: How to fix "The system is running in low-graphics mode" error? and none worked.

I have tried multiple other methods for installing my drivers, all of which claim to be the proper way and none work, all cause the same error.

I am now in a fresh working install of ubuntu with no other operating systems on this machine, if someone could step by step tell me how to install my drivers that would be much appreciated.

As a side note, this is not the only problem I have encountered, my R.A.T 3 gaming mouse also does not work with ubuntu and causes a similar error as what happens with my video drivers when I try to implement the fixes I have found for it. These issues are very discouraging and if I don't figure them out soon I believe I will switch back to windows.

1 Answers1

0

OK, I'm no expert, but these are the steps that worked for me and my Nvidia drivers. I'm using 12.04, but the process should be pretty much the same. I used this page , but modified the instructions a bit.

1)Install the latest Linux headers with

sudo apt-get install build-essential linux-headers-`uname -r`  

For me, those headers gave me problems, so I used 3.4.0-030400-generic instead of uname -r. Just make sure to use Synaptic to get rid of the ones you don't use.

2)For me, I completely uninstalled every other driver on the system instead of just disabling them. If you don't want to do that, follow the instructions on the page I linked.

3)Press Ctrl+Alt+F1 to get into text-only mode, or whatever you call it.

4) This is what differs from the guide I linked. I just used the command sudo lightdm stop and it worked fine.

5) Run the command sudo sh /name/of/directory/NVIDIA* depending on where you save the driver file. You can hit tab to auto-complete the name of the driver file. It will walk you through the installation.

6) Do a sudo reboot and you should be good to go!

rcrobot
  • 51