How to Disable the Ubuntu ‘Nvidia-resume’ Service

The GPU Wake Sequence Manager

When you install the proprietary Nvidia graphics drivers on an Ubuntu system, the installation sets up a suite of systemd services to manage the GPU’s power states. The nvidia-resume.service is the direct counterpart to the nvidia-suspend service. While the suspend service handles safely powering down the GPU when the computer goes to sleep, the nvidia-resume service is responsible for waking the GPU back up. It reinitializes the graphics card, restores the VRAM contents that were saved before sleep, and ensures the X11 or Wayland display server regains control of the display output without crashing.

This service is absolutely vital for a laptop or a desktop workstation that frequently utilizes sleep mode. However, in enterprise environments where Ubuntu is deployed on dedicated servers (like headless AI training clusters or render farms), sleep states are strictly forbidden. These machines are designed for 100% uptime and are never suspended to RAM. Because a server will never enter a sleep state, it will never need to “resume” from one. In these strict, always-on environments, having the nvidia-resume daemon active is an unnecessary configuration. Disabling it is a standard part of stripping down a server OS to its bare essentials.

How to Disable the Nvidia Resume Service

You can prevent this wake-up management service from initializing using standard systemctl commands.

  1. Open your Ubuntu Terminal.
  2. To disable the service so it is not queued during the boot process, run:
sudo systemctl disable nvidia-resume.service
  1. To guarantee that no other power management target can accidentally trigger the service, you must mask it:
sudo systemctl mask nvidia-resume.service

The service is now completely neutralized. (Note: Only perform this on machines that will never be put to sleep. If you do this on a standard desktop or laptop, your system will likely fail to restore the graphical session when waking up, resulting in a black screen).

Get the best tech tips delivered straight to your inbox.

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