By default Ubuntu has selected the nouveau drivers as i have an nvidia gpu. But I need to run my system on the Intel GPU instead, with Intel drivers etc. How can I do this?
-
2this one? http://askubuntu.com/questions/449530/switching-between-nvidia-geforce-640m-and-intel-integrated-graphics?rq=1 – fossfreedom Dec 25 '15 at 09:36
-
install Prime Indicator – Alex Jones Dec 25 '15 at 09:40
-
i just tried prime-indicator. it still switches me to nvidia graphics – raaj Dec 25 '15 at 10:42
-
doing lspci | grep VGA yeilds only my Nvidia card. How can I install my intel drivers – raaj Dec 25 '15 at 10:48
-
@raaj after you switch from prime indicator you have to logout and login back – Alex Jones Dec 25 '15 at 10:50
-
I did so. Nothing happens, it continues to remain with the nvidia driver – raaj Dec 25 '15 at 11:50
2 Answers
To achieve what you want, you will have to install the proprietary NVIDIA drivers and Optimus.
After that you can switch between the graphics from NVIDIA X Server Settings PRIME Profiles.
Assuming you have a NVIDIA GEFORCE 400 series adapter or newer execute these commands :
sudo apt-get update
sudo apt-get install nvidia-352 nvidia-prime
sudo reboot
Update addressing your response to having problems with 352 drivers
Use another method - first uninstall the formerly installed NVIDIA drivers.
Highlight the Ubuntu entry in the GRUB boot menu and press the E key.
Add nouveau.modeset=0
to the end of the linux line - press F10 to boot.
On login screen press Ctrl+Alt+F1 - enter user name and password - execute :
sudo apt-get purge nvidia*
sudo reboot
Now install the NVIDIA drivers 358 from the Proprietary GPU Drivers PPA.
Highlight the Ubuntu entry in the GRUB boot menu and press the E key.
Add nouveau.modeset=0
to the end of the linux line - press F10 to boot.
On login screen press Ctrl+Alt+F1 - enter user name and password - execute :
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-358 nvidia-prime
sudo reboot

- 31,163
- 7
- 94
- 131
-
2he wants to use intel drivers. And he does not wants nvidia drives installed but want to switch to intel drivers – Alex Jones Dec 25 '15 at 11:49
-
I did exactly as above. same issue, attempting switching using prime-select doesn't work, still stuck on nvidia. Also, my nvidia control panel does not have PRIME Profiles – raaj Dec 25 '15 at 11:50
-
@edwardtorvalds : Then the only way to do this is to deactivate the NVIDIA card in BIOS ... in case this is possible ... otherwise you have to install the proprietary drivers. :) – cl-netbox Dec 25 '15 at 11:52
-
No i cannot do this. Could it be a driver issue? Perhaps if i downgrade from 352 to something lower prime profiles may work
http://superuser.com/questions/998403/is-it-possible-to-enable-both-onbard-and-pci-e-graphic-card-in-ubuntu
– raaj Dec 25 '15 at 11:53 -
-
-
-
-
@raaj : Boot the PC - add the parameter - boot - on install screen enter the commands to uninstall. After a reboot do the same ... and install the new drivers. Just follow exactly the instructions ... in case it does not work with "nouveau.modeset=0", set the parameter "nomodeset" (without quotes) instead - then boot. :) – cl-netbox Dec 25 '15 at 12:19
-
@cl-netbox there is no need to remove nvidia drivers for this purpose! did you see what happened? black screen!!! there are two safe ways to deal with this problem switch to intel by prime indicator or nvidia settings and disable nvidia from bios! – Alex Jones Dec 25 '15 at 12:53
-
I just installed your drivers, and tried prime-select. Still doesnt switch – raaj Dec 25 '15 at 12:58
-
@edwardtorvalds : Please believe me - this is the most clean, proper and proven to work way to handle drivers installation (given that all steps are executed exactly as described). The fact that PRIME profiles is not available in NVIDIA settings shows that something was not configured properly. This is the reason why everything has to be completely removed before installing new NVIDIA drivers and software. :) – cl-netbox Dec 25 '15 at 13:00
-
@cl-netbox how can I just believe you? I see many of your answers give users black screen – Alex Jones Dec 25 '15 at 13:01
-
@edwardtorvalds : That's not true - most of all my answers worked ! The black screen issues derives from the open source nouveau drivers incompatibility with many new NVIDIA graphics adapters ... and by the way ... you can see in the comment from raaj above, that he has got the drivers installed meanwhile. :) – cl-netbox Dec 25 '15 at 13:04
-
@raaj : Do you have the possibility to select switchable mode or NVIDIA (activating the card) in BIOS ? :) – cl-netbox Dec 25 '15 at 13:11
-
I figured it out. I just to need to plug my monitor to the motherboard and now it works. – raaj Dec 27 '15 at 13:43
Nvidia settings is available in software center. Install it if not already installed.
sudo apt install nvidia-settings
Now open it by running this in terminal
nvidia-settings
From there you will be able to select which GPU you want to use (Nvidia/Intel).
Go to PRIME Profiles -> Select the GPU you would like to use -> Choose Intel (Power Saving Mode)

- 13