How to Disable the Ubuntu ‘Nvidia-powerd’ Service

The Dynamic Power Management Tool

When you install the proprietary Nvidia graphics drivers on modern Ubuntu systems, particularly on laptops featuring Nvidia Optimus (hybrid graphics) technology, the installation often configures a background service known as nvidia-powerd.service. This daemon is a relatively recent addition to the Nvidia driver stack, specifically designed to handle “Dynamic Boost.” It actively monitors the power and thermal headroom of your entire system and dynamically shifts electrical power between your Intel/AMD CPU and your Nvidia GPU in real-time, depending on which component needs it most to maximize performance in demanding applications like games or 3D rendering.

While dynamic power shifting is fantastic for maximizing framerates on a high-end gaming laptop, it introduces a layer of unpredictable power draw and aggressive thermal management that is highly undesirable in other environments. If you are running a dedicated server, a desktop workstation with a massive power supply where power shifting is unnecessary, or if you are trying to undervolt and strictly control your laptop’s thermals manually, nvidia-powerd actively fights against your custom configurations. In scenarios where you demand predictable, static power limits rather than dynamic shifting, this daemon must be disabled.

How to Disable the Nvidia Powerd Service

You can permanently stop this dynamic power shifting daemon from running using standard systemctl commands.

  1. Open your Ubuntu Terminal.
  2. To stop the daemon immediately during your current session, run:
sudo systemctl stop nvidia-powerd.service
  1. To disable the service so it does not start automatically on future boots, run:
sudo systemctl disable nvidia-powerd.service
  1. To guarantee that no other graphical process or power management script can accidentally trigger the daemon, you must mask it:
sudo systemctl mask nvidia-powerd.service

Your Nvidia GPU will now rely strictly on its base power limits rather than attempting to dynamically siphon power from the CPU.

Get the best tech tips delivered straight to your inbox.

Join thousands of readers mastering Apple, Google, Microsoft, and Linux.