- Save
nvidia-tdp.service
andnvidia-tdp.timer
to/etc/systemd/system
. - Run
sudo systemctl daemon-reload && sudo systemctl enable nvidia-tdp && sudo systemctl start nvidia-tdp
to apply immediately and on future boots.
Last active
September 10, 2024 07:33
-
-
Save Calinou/2966777d961ff30c9edf5a3c83053a7d to your computer and use it in GitHub Desktop.
Increase NVIDIA power limit with the proprietary driver on Linux, from 200W to the maximum 216W on a GeForce GTX 1080
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Set NVIDIA power limit above default | |
[Service] | |
Type=oneshot | |
ExecStart=/usr/bin/nvidia-smi -pl 216 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Set NVIDIA power limit on boot | |
[Timer] | |
OnBootSec=5 | |
[Install] | |
WantedBy=timers.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment