quick-docs/modules/ROOT/pages/how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops.adoc

150 lines
6.3 KiB
Text
Raw Normal View History

2020-05-14 06:37:17 +00:00
= How to Set Nvidia as Primary GPU on Optimus-based Laptops
include::{partialsdir}/3rdparty-message.adoc[]
2020-07-23 08:27:24 +00:00
== Introduction
2020-05-14 06:37:17 +00:00
The objective is to enable NVIDIA GPU of an Optimus-based laptop *all the time* and use it for every single activity.
Please do not use this guide if you want to render your desktop using the integrated GPU and specifically select applications to be rendered using the NVIDIA GPU.
NOTE: The steps listed here have been verified to be working on Fedora 32 Workstation. Please update your installation to include your experiences and any other tweaks that may be needed if you are using any other desktop environments.
NOTE: As Prime works less satisfactorily with Wayland server, following the steps provided in this guide would default the server to Xorg.
WARNING: This guide requires the secure boot to be **turned off** to load up the unsigned NVIDIA kernel modules.
In order to make all the rendering default to the NVIDIA GPU, you need the follow the steps very carefully.
First, you need to see if you really want to achieve this.
2020-07-23 08:27:24 +00:00
=== Why would you want to do that?
2020-08-05 19:02:47 +00:00
* The use of NVIDIA GPU all the time would allow for smoother transitions and richer animation effects. Premium desktop environments like GNOME would benefit a lot from this.
* Enabling the NVIDIA GPU all the time would lead to lower CPU load and memory consumption which otherwise would have been high due to added in-memory video buffer.
2020-05-14 06:37:17 +00:00
2020-07-23 08:27:24 +00:00
=== Why would you not want to do that?
2020-08-05 19:02:47 +00:00
* With the NVIDIA GPU used all the time, there would be a slight increase in battery consumption which should not be a concern if your device is used while being plugged in.
* Increased generation of heat from the all-the-time enabled NVIDIA GPU can be worrisome. You would not want to play AAA-titles on Proton while placing your laptop on your lap.
2020-05-14 06:37:17 +00:00
2020-07-23 08:27:24 +00:00
== Step #1: Update from the existing repositories
2020-05-14 06:37:17 +00:00
Execute
----
sudo dnf update
----
once to update all your packages first.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-0.png[]
2020-07-23 08:27:24 +00:00
== Step #2: Add the RPMFusion repository for NVIDIA drivers
2020-05-14 06:37:17 +00:00
Then you need to add the *RPM Fusion repository for NVIDIA drivers*. To do that, open up *GNOME Software* and click on the *hamburger menu* (three horizontal lines) on the top-right corner. Then click on *Software Repositories* from the dropdown menu. There you will see this.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-1.png[]
Select *RPM Fusion for Fedora 32 - Nonfree - NVIDIA Driver* and *ENABLE* it. It requires elevated privileges so enter your password and it will be done.
2020-07-23 08:27:24 +00:00
== Step #3: Update from the newly added repositories
2020-05-14 06:37:17 +00:00
Execute
----
sudo dnf update --refresh
----
to fetch all available updates from the newly added repository.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-2.png[]
2020-07-23 08:27:24 +00:00
== Step #4: Install the driver and its dependencies
2020-05-14 06:37:17 +00:00
Execute
----
sudo dnf install gcc kernel-headers kernel-devel akmod-nvidia xorg-x11-drv-nvidia xorg-x11-drv-nvidia-libs xorg-x11-drv-nvidia-libs.i686
----
to get the driver and all necessary dependencies.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-3.png[]
2020-07-23 08:27:24 +00:00
== Step #5: Wait for the kernel modules to load up
2020-05-14 06:37:17 +00:00
You **must** wait 5-10 minutes for the kernel modules to load. Please do not proceed to the next steps immediately.
2020-07-23 08:27:24 +00:00
== Step #6: Read from the updated kernel modules
2020-05-14 06:37:17 +00:00
Execute
----
sudo akmods --force
sudo dracut --force
----
This would force the configuration to be read from the updated kernel modules which now have the NVIDIA drivers in them.
2020-07-23 08:27:24 +00:00
== Step #7: Reboot your system
2020-05-14 06:37:17 +00:00
Wait for 3-5 minutes for the changes to take effect and then reboot your system.
Once your system has started, go to the *About* page in the *Settings* application. You are likely to see the following output.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-4.png[]
This means that the driver installation was successful leading to the detection of two distinct video accelerators - internal and dedicated.
2020-07-23 08:27:24 +00:00
== Step #8: Edit the X11 configuration
2020-05-14 06:37:17 +00:00
Execute the following command to copy the display render details for the X11.
----
sudo cp -p /usr/share/X11/xorg.conf.d/nvidia.conf /etc/X11/xorg.conf.d/nvidia.conf
----
Once done, open up the `nvidia.conf` from the copy destination and edit it to add
----
Option "PrimaryGPU" "yes"
----
to every section of it.
For example, using `nano`
----
sudo nano /etc/X11/xorg.conf.d/nvidia.conf
----
and make changes.
The file should look like this. Your file should look similar to this.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-5.png[]
You can see the additions in both sections.
Save it using `[Ctrl]+[S]` and exit out using `[Ctrl]+[X]`.
2020-07-23 08:27:24 +00:00
== Step #9: Reboot your system
2020-05-14 06:37:17 +00:00
Reboot your system and proceed to the next steps to verify the change in configuration.
2020-07-23 08:27:24 +00:00
== Step #10: Verify the configuration
2020-05-14 06:37:17 +00:00
Open a terminal and type in
----
glxinfo | egrep "OpenGL vendor|OpenGL renderer"
----
It should show your NVIDIA GPU.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-6.png[]
Check on `screenfetch`.
----
screenfetch
----
It should show your NVIDIA GPU under the GPU name.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-7.png[]
Check in your *Settings* application.
You would see something like this in the *About* page.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-8.png[]
You can make other configuration changes using *NVIDIA X Server Settings* application.
Also the GPU would show activity in its utilization percentage to signify that it is actually working.
image:how-to-set-nvidia-as-primary-gpu-on-optimus-based-laptops-9.png[]
2020-07-23 08:27:24 +00:00
== References
2020-05-14 06:37:17 +00:00
Should you face issues while following these steps or if these do not match your use case,
feel free to convey your queries on https://ask.fedoraproject.org[Fedora Forums].
Here are the links you can refer to for obtaining more information.
2020-08-05 19:02:47 +00:00
* https://rpmfusion.org/Howto/Optimus[RPMFusion's Optimus How-to guide]
* https://rpmfusion.org/Howto/NVIDIA[RPMFusion's NVIDIA How-to guide]
* https://unix.stackexchange.com/questions/16407/how-to-check-which-gpu-is-active-in-linux[GPU Activity on UNIX StackExchange]
* https://www.reddit.com/r/Fedora/comments/bw4b0p/how_to_fedora_nvidia_prime/[Fedora Subreddit (zvitalys response only)]
2020-05-14 06:37:17 +00:00
Please do not refer to the misleading information available on this site https://www.if-not-true-then-false.com/2015/fedora-nvidia-guide/