I changed two Linux settings for my Nvidia GPU and gained FPS I didn’t know I was missing
I changed two Linux settings for my Nvidia GPU and gained FPS I didn’t know I was missing
https://www.makeuseof.com/changed-linux-settings-for-nvidia-gpu-gained-fps-didnt-know-was-missing/
Publish Date: 2026-06-11 15:30:00
Source Domain: www.makeuseof.com
Linux and Nvidia haven’t exactly been known to work out of the box. Team Green’s GPUs have never been easy to set up or even use on Linux, and when compared to Windows, it is an objectively inferior experience.
So much so that certain basic settings remain toggled off, and a few of these are known to affect performance. Nothing’s more frustrating than seeing your FPS go down for no reason at all, and it isn’t fair to expect everyone to know the inner workings of such setups.
That being said, there are a few countermeasures and commands that can be used with great effect, and the boost is often substantial.
Enable the nvidia-powerd service
Dave Meikleham / MakeUseOf
The nvidia-powerd service is, for some reason, disabled by default on most Linux installations. The powerd service is a daemon that, when enabled, lets the GPU access the full wattage it was rated for.
This is more common in laptops, which feature discrete mobile Nvidia GPUs. Usually, modern laptop GPUs are rated for a base TDP and an additional “boost” TDP that pushes a bit more wattage to the card.
The difference is immediately noticeable, and it’s essentially free performance that is otherwise left on the table. Enabling it is as simple as running a single command in the terminal.
systemctl enable –now nvidia-powerd.service
This should let the GPU achieve performance similar to Windows, and is a step I’d…