You are not logged in.
Does anyone know the command line to set NVidia PowerMizer to "Prefer Maximum Performance" via the nvidia-settings tool? Every time I boot my computer I have to open the GUI and set it manually. I have an NVidia GTX 560.
I've tried looking through "nvidia-settings -q all" and tried various settings with "nvidia-settings -a" but they're all either read-only or don't affect the performance when I observe it with the GUI.
Last edited by corban (2013-05-12 03:40:39)
Offline
# Force Powermizer to a certain level at all times
# level 0x1=highest
# level 0x2=med
# level 0x3=lowest
# AC settings:
Option "RegistryDwords" "PowerMizerLevelAC=0x3"
# Battery settings:
Option "RegistryDwords" "PowerMizerLevel=0x3"
In the "Device" section of your xorg config. I've never actually paid attention to if it works though
Offline
# Force Powermizer to a certain level at all times # level 0x1=highest # level 0x2=med # level 0x3=lowest # AC settings: Option "RegistryDwords" "PowerMizerLevelAC=0x3" # Battery settings: Option "RegistryDwords" "PowerMizerLevel=0x3"
In the "Device" section of your xorg config. I've never actually paid attention to if it works though
Nope, it doesn't work. The setting is still at "Adaptive" which is a synonym for "bad performance."
Offline
http://forums.linuxmint.com/viewtopic.php?f=42&t=129879
Maybe it can help you.
Offline
http://forums.linuxmint.com/viewtopic.php?f=42&t=129879
Maybe it can help you.
Unfortunately that doesn't work either. The clock level still goes down below max.
Offline
For games, I use:
For performance mode:
nvidia-settings -a [gpu:0]/GPUPowerMizerMode=1 > /dev/null
Run the game, then disable performance mode:
wine bin/xrEngine.exe ; nvidia-settings -a [gpu:0]/GPUPowerMizerMode=0 > /dev/null
Offline
For games, I use:
For performance mode:
nvidia-settings -a [gpu:0]/GPUPowerMizerMode=1 > /dev/null
Run the game, then disable performance mode:
wine bin/xrEngine.exe ; nvidia-settings -a [gpu:0]/GPUPowerMizerMode=0 > /dev/null
When I run that command, the performance switches to prefer maximum, which is great. However, I put that in my .xinitrc (right before the "exec startxfce4") but it doesn't seem to work. Any idea where I can put it so that it'll run whenever I login?
Offline
Add a script to run at XFCE login, using XFCE's control panel - "application autostart".
If necessary, add a startup delay, e.g.:
(sleep 20 && DISPLAY=":0.0" nvidia-settings -a [gpu:0]/GPUPowerMizerMode=1) &
Edit: Added DISPLAY, in case that's needed too.
Last edited by brebs (2013-05-12 01:45:16)
Offline
Add a script to run at XFCE login, using XFCE's control panel - "application autostart".
If necessary, add a startup delay, e.g.:
(sleep 20 && DISPLAY=":0.0" nvidia-settings -a [gpu:0]/GPUPowerMizerMode=1) &
Edit: Added DISPLAY, in case that's needed too.
Thanks, works like a charm.
Offline
This worked for me also, and fixed a bad screen flickering issue too )
Could not figure out at first - with ZSH shell you have to put the argument in quotes:
nvidia-settings -a '[gpu:0]/GPUPowerMizerMode=2'
Offline