在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):georgewhewell/undervolt开源软件地址(OpenSource Url):https://github.com/georgewhewell/undervolt开源编程语言(OpenSource Language):Python 100.0%开源软件介绍(OpenSource Introduction):Warning! This program is untested (apart from by myself) and it may damage your hardware! Use at your own risk. undervoltundervolt is a program for undervolting Intel CPUs under Linux. It works in a similar manner to the Windows program ThrottleStop (i.e, MSR 0x150). You can apply a fixed voltage offset to one of 5 voltage planes, override your systems temperature target (CPU will throttle when this temperature is reached), and adjust the system's short and long power budgets (clocks and thus voltages will be altered in order to keep total power usage in these periods under the configured limits). For more information, read here. InstallingFrom PyPi: $ pip install undervolt From source: $ pip install git+https://github.com/georgewhewell/undervolt.git Note for custom kernel users: the module 'msr' ("CONFIG_X86_MSR") must be enabled in the kernel options (Processor type & features -> Model-specific register support) ExamplesRead current offsets: $ undervolt --read temperature target: -25 (75C) core: -110.35 mV gpu: -49.8 mV cache: -110.35 mV uncore: -59.57 mV analogio: -59.57 mV powerlimit: 35.0W (short: 1.0s - enabled) / 35.0W (long: 1.0s - enabled) Apply -100mV offset to CPU Core and Cache: $ undervolt --core -100 --cache -100 Apply -75mV offset to GPU, -100mV to all other planes: $ undervolt --gpu -75 --core -100 --cache -100 --uncore -100 --analogio -100 Set temperature target to 97C: $ undervolt --temp 97 Set powerlimit 1 to 35W, 10s: $ undervolt -p1 35 10 Generated the command to run to recreate your Throttlestop settings: $ undervolt --throttlestop ThrottleStop.ini --tsindex 3 undervolt --core -100.5859375 $ undervolt --throttlestop ThrottleStop.ini undervolt --core -125.0 --gpu -125.0 --cache -125.0 Usage$ undervolt -h usage: undervolt.py [-h] [--version] [-v] [-f] [-r] [-t TEMP] [--temp-bat TEMP_BAT] [--throttlestop THROTTLESTOP] [--tsindex TSINDEX] [-p1 POWER_LIMIT TIME_WINDOW] [-p2 POWER_LIMIT TIME_WINDOW] [--lock-power-limit] [--core CORE] [--gpu GPU] [--cache CACHE] [--uncore UNCORE] [--analogio ANALOGIO] optional arguments: -h, --help show this help message and exit --version show program's version number and exit -v, --verbose print debug info -f, --force allow setting positive offsets -r, --read read existing values -t TEMP, --temp TEMP set temperature target on AC (and battery power if --temp-bat is not used) --temp-bat TEMP_BAT set temperature target on battery power --throttlestop THROTTLESTOP extract values from ThrottleStop --tsindex TSINDEX ThrottleStop profile index -p1 POWER_LIMIT TIME_WINDOW, --power-limit-long POWER_LIMIT TIME_WINDOW P1 Power Limit (W) and Time Window (s) -p2 POWER_LIMIT TIME_WINDOW, --power-limit-short POWER_LIMIT TIME_WINDOW P2 Power Limit (W) and Time Window (s) --lock-power-limit Locks the set power limit. Once they are locked, they can not be modified until next RESET (e.g., Reboot). --core CORE offset (mV) --gpu GPU offset (mV) --cache CACHE offset (mV) --uncore UNCORE offset (mV) --analogio ANALOGIO offset (mV) Running automatically on boot (systemd)First, create a unit file [Unit] Description=undervolt After=suspend.target After=hibernate.target After=hybrid-sleep.target [Service] Type=oneshot # If you have installed undervolt globally (via sudo pip install): ExecStart=/usr/local/bin/undervolt -v --core -150 --cache -150 --gpu -100 # If you want to run from source: # ExecStart=/path/to/undervolt.py -v --core -150 --cache -150 --gpu -100 [Install] WantedBy=multi-user.target WantedBy=suspend.target WantedBy=hibernate.target WantedBy=hybrid-sleep.target Check that your script works: $ systemctl start undervolt Now you may enable undervolt service: $ systemctl enable undervolt Or, if you have issue with settings persistence, create a timer [Unit] Description=Apply undervolt settings [Timer] Unit=undervolt.service # Wait 2 minutes after boot before first applying OnBootSec=2min # Run every 30 seconds OnUnitActiveSec=30 [Install] WantedBy=multi-user.target Now enable and start the timer: $ systemctl enable undervolt.timer $ systemctl start undervolt.timer By including the OnBootSec command, settings will not be immediately applied. If you have set overly-aggressive offsets, you will have a short period to disable the timer before it crashes your system: $ systemctl stop undervolt.timer Now you can edit your Running automatically on boot (runit)First, create a directory for the service: $ sudo mkdir -p /etc/sv/undervolt Then create a file named "run" in that directory and edit it to contain these contents: #!/bin/sh undervolt --core -85 --uncore -85 --analogio -85 --cache -85 --gpu -85 sleep 60 Replace the offsets with your own. Then mark the file as executable: $ sudo chmod a+x /etc/sv/undervolt/run Then enable the service: $ sudo ln -s /etc/sv/undervolt /var/services/ Hardware supportUndervolting should work on any CPU later than Haswell.
Troubleshooting
GUIThere is also a small gui written in Java avaiable here: https://github.com/zmalrobot/JavaLinuxUndervolt It will allow you to set each value core, gpu, cache, uncore, analogio (temperature target isn't implemented yet),save a profile, load a profile and reset the value. CreditThis project is a trivial wrapper around the work of others from the following resources:
Many thanks to all who contributed. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论