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

Since I can't seem to open the Additional Drivers program? And how do I know what driver I need to install?

share|improve this question

5 Answers

up vote 22 down vote accepted

The additional drivers program has a command line interface, jockey-text:

Use

jockey-text --list

to get a list of available drivers and their status, then use

# the init lines are required only for graphics drivers
sudo init 1
jockey-text --enable=DRIVER
sudo init 2

where DRIVER is the one you got from the list. For example:

jockey-text --enable=firmware:b43

To install the Broadcom B43 wireless driver.

For your graphics card, you will get a choice of the proprietary driver from the manufacturer and a free alternative.

share|improve this answer
1  
You beat me to it by 1 min. – loevborg Jan 18 '11 at 14:03
2  
For the graphics driver, shouldn't there be additional things to do - stop and restart x - for example? – apoorv020 Jan 18 '11 at 16:27
Sorry I didn't mention it because I know TheX is aware of it. Yes you have to either restart the display server (log out and back in) or restart the system entirely (recommended). – Stefano Palazzo Jan 18 '11 at 16:31
sudo jockey-text

Or if you know which driver you need, eg nvidia-glx-185 (there is also -173, -180 and -96 - each has different hardware support so use jockey if you don't know which you need), just:

sudo apt-get install nvidia-glx-185
share|improve this answer
1  
I would use nvidia-current for recent hardware. (sudo apt-get install nvidia-current) – Jonathon Oct 25 '10 at 21:14
Would this automatically install it for me? God knows I'm SICK of text-mode :P – Dante Ashton Oct 27 '10 at 1:42

The internal name of the "additional drivers" program is jockey-gtk. There's a console version with the same functionality called jockey-text in the eponymous package. It should be installed by default.

You should be able to use

jockey-text -l

to list the available drivers and something like

jockey-text -e xorg:nvidia-185

to install one of the options listed. You should select the most appropriate driver listed.

share|improve this answer

you need to run sudo apt-get install nvidia-current and as the previous answer said, sudo nvidia-xconfig afterwards. Then do sudo reboot and you should have a working system.

share|improve this answer

After install nvidia driver you can regenerate xorg config for your nvidia adapter:

sudo nvidia-xconfig

Also, you can download the driver from www.nvidia.com and install it manually:

sudo sh ./downloads/NVIDIA-Linux-x86-xxx.xx.xx.run
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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