AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / unix / 问题 / 443654
Accepted
piegames
piegames
Asked: 2018-05-15 01:10:15 +0800 CST2018-05-15 01:10:15 +0800 CST 2018-05-15 01:10:15 +0800 CST

为热节流设置临界 CPU 温度

  • 772

根据sensors,我的 CPU 内核的临界温度为 100°C。使用我的笔记本电脑时,它永远不会超过 95°C(所以要么我的传感器有缺陷,要么出于某种原因将热节流设置为较低的值,但这并不重要)。我有一个 Intel i7 并且 thermod.service 已启动并正在运行,并且我在 Arch Linux 上。

但是 95°C 太热了,我想降低这个值。我想在 75 或 80°C 时进行热节流。我认为这很简单,但显然关于 Google 的信息很少,而且 thermod 的配置也缺少文档。

我试过了

dbus-send --system --dest=org.freedesktop.thermald /org/freedesktop/thermald org.freedesktop.thermald.SetUserPassiveTemperature string:cpu uint32:80000

正如手册页所建议的那样,但运行stress仍然使温度达到 95。

那么如何降低发生热节流的值呢?

arch-linux cpu-frequency
  • 1 1 个回答
  • 8520 Views

1 个回答

  • Voted
  1. Best Answer
    Ipor Sircer
    2018-05-15T03:47:21+08:002018-05-15T03:47:21+08:00

    通过 shellscript 有一个 hack 解决方案:https ://github.com/Sepero/temp-throttle/

    #!/bin/bash
    
    # Usage: temp_throttle.sh max_temp
    # USE CELSIUS TEMPERATURES.
    # version 2.20
    
    cat << EOF
    Author: Sepero 2016 (sepero 111 @ gmx . com)
    URL: http://github.com/Sepero/temp-throttle/
    EOF
    
    # Additional Links
    # http://seperohacker.blogspot.com/2012/10/linux-keep-your-cpu-cool-with-frequency.html
    
    # Additional Credits
    # Wolfgang Ocker <weo AT weo1 DOT de> - Patch for unspecified cpu frequencies.
    
    # License: GNU GPL 2.0
    
    # Generic  function for printing an error and exiting.
    err_exit () {
        echo ""
        echo "Error: $@" 1>&2
        exit 128
    }
    
    if [ $# -ne 1 ]; then
        # If temperature wasn't given, then print a message and exit.
        echo "Please supply a maximum desired temperature in Celsius." 1>&2
        echo "For example:  ${0} 60" 1>&2
        exit 2
    else
        #Set the first argument as the maximum desired temperature.
        MAX_TEMP=$1
    fi
    
    
    ### START Initialize Global variables.
    
    # The frequency will increase when low temperature is reached.
    LOW_TEMP=$((MAX_TEMP - 5))
    
    CORES=$(nproc) # Get number of CPU cores.
    echo -e "Number of CPU cores detected: $CORES\n"
    CORES=$((CORES - 1)) # Subtract 1 from $CORES for easier counting later.
    
    # Temperatures internally are calculated to the thousandth.
    MAX_TEMP=${MAX_TEMP}000
    LOW_TEMP=${LOW_TEMP}000
    
    FREQ_FILE="/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies"
    FREQ_MIN="/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq"
    FREQ_MAX="/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq"
    
    # Store available cpu frequencies in a space separated string FREQ_LIST.
    if [ -f $FREQ_FILE ]; then
        # If $FREQ_FILE exists, get frequencies from it.
        FREQ_LIST=$(cat $FREQ_FILE) || err_exit "Could not read available cpu frequencies from file $FREQ_FILE"
    elif [ -f $FREQ_MIN -a -f $FREQ_MAX ]; then
        # Else if $FREQ_MIN and $FREQ_MAX exist, generate a list of frequencies between them.
        FREQ_LIST=$(seq $(cat $FREQ_MAX) -100000 $(cat $FREQ_MIN)) || err_exit "Could not compute available cpu frequencies"
    else
        err_exit "Could not determine available cpu frequencies"
    fi
    
    FREQ_LIST_LEN=$(echo $FREQ_LIST | wc -w)
    
    # CURRENT_FREQ will save the index of the currently used frequency in FREQ_LIST.
    CURRENT_FREQ=2
    
    # This is a list of possible locations to read the current system temperature.
    TEMPERATURE_FILES="
    /sys/class/thermal/thermal_zone0/temp
    /sys/class/thermal/thermal_zone1/temp
    /sys/class/thermal/thermal_zone2/temp
    /sys/class/hwmon/hwmon0/temp1_input
    /sys/class/hwmon/hwmon1/temp1_input
    /sys/class/hwmon/hwmon2/temp1_input
    /sys/class/hwmon/hwmon0/device/temp1_input
    /sys/class/hwmon/hwmon1/device/temp1_input
    /sys/class/hwmon/hwmon2/device/temp1_input
    null
    "
    
    # Store the first temperature location that exists in the variable TEMP_FILE.
    # The location stored in $TEMP_FILE will be used for temperature readings.
    for file in $TEMPERATURE_FILES; do
        TEMP_FILE=$file
        [ -f $TEMP_FILE ] && break
    done
    
    [ $TEMP_FILE == "null" ] && err_exit "The location for temperature reading was not found."
    
    
    ### END Initialize Global variables.
    
    
    ### START define script functions.
    
    # Set the maximum frequency for all cpu cores.
    set_freq () {
        # From the string FREQ_LIST, we choose the item at index CURRENT_FREQ.
        FREQ_TO_SET=$(echo $FREQ_LIST | cut -d " " -f $CURRENT_FREQ)
        echo $FREQ_TO_SET
        for i in $(seq 0 $CORES); do
            # Try to set core frequency by writing to /sys/devices.
            { echo $FREQ_TO_SET 2> /dev/null > /sys/devices/system/cpu/cpu$i/cpufreq/scaling_max_freq; } ||
            # Else, try to set core frequency using command cpufreq-set.
            { cpufreq-set -c $i --max $FREQ_TO_SET > /dev/null; } ||
            # Else, return error message.
            { err_exit "Failed to set frequency CPU core$i. Run script as Root user. Some systems may require to install the package cpufrequtils."; }
        done
    }
    
    # Will reduce the frequency of cpus if possible.
    throttle () {
        if [ $CURRENT_FREQ -lt $FREQ_LIST_LEN ]; then
            CURRENT_FREQ=$((CURRENT_FREQ + 1))
            echo -n "throttle "
            set_freq $CURRENT_FREQ
        fi
    }
    
    # Will increase the frequency of cpus if possible.
    unthrottle () {
        if [ $CURRENT_FREQ -ne 1 ]; then
            CURRENT_FREQ=$((CURRENT_FREQ - 1))
            echo -n "unthrottle "
            set_freq $CURRENT_FREQ
        fi
    }
    
    get_temp () {
        # Get the system temperature.
    
        TEMP=$(cat $TEMP_FILE)
    }
    
    ### END define script functions.
    
    echo "Initialize to max CPU frequency"
    unthrottle
    
    
    # Main loop
    while true; do
        get_temp # Gets the current temperature and set it to the variable TEMP.
        if   [ $TEMP -gt $MAX_TEMP ]; then # Throttle if too hot.
            throttle
        elif [ $TEMP -le $LOW_TEMP ]; then # Unthrottle if cool.
            unthrottle
        fi
        sleep 3 # The amount of time between checking temperatures.
    done
    
    • 3

相关问题

  • Nftables 配置错误:指定的协议冲突:inet-service v. icmp

  • archlinux efi netboot 内核“ip”不起作用?systemd "启动 Switch Root 失败。"

  • 如何在 Arch Linux 上设置音频,支持多个程序同时发出音频而不创建 asoundrc?

  • 为什么有时需要手动导入密钥?

  • 在启动时加载设备

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何将 GPG 私钥和公钥导出到文件

    • 4 个回答
  • Marko Smith

    ssh 无法协商:“找不到匹配的密码”,正在拒绝 cbc

    • 4 个回答
  • Marko Smith

    我们如何运行存储在变量中的命令?

    • 5 个回答
  • Marko Smith

    如何配置 systemd-resolved 和 systemd-networkd 以使用本地 DNS 服务器来解析本地域和远程 DNS 服务器来解析远程域?

    • 3 个回答
  • Marko Smith

    如何卸载内核模块“nvidia-drm”?

    • 13 个回答
  • Marko Smith

    dist-upgrade 后 Kali Linux 中的 apt-get update 错误 [重复]

    • 2 个回答
  • Marko Smith

    如何从 systemctl 服务日志中查看最新的 x 行

    • 5 个回答
  • Marko Smith

    Nano - 跳转到文件末尾

    • 8 个回答
  • Marko Smith

    grub 错误:你需要先加载内核

    • 4 个回答
  • Marko Smith

    如何下载软件包而不是使用 apt-get 命令安装它?

    • 7 个回答
  • Martin Hope
    rocky 如何将 GPG 私钥和公钥导出到文件 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Wong Jia Hau ssh-add 返回:“连接代理时出错:没有这样的文件或目录” 2018-08-24 23:28:13 +0800 CST
  • Martin Hope
    Evan Carroll systemctl 状态显示:“状态:降级” 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim 我们如何运行存储在变量中的命令? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S 为什么 /dev/null 是一个文件?为什么它的功能不作为一个简单的程序来实现? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 如何从 systemctl 服务日志中查看最新的 x 行 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - 跳转到文件末尾 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla 为什么真假这么大? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis 在一个巨大的(70GB)、一行、文本文件中替换字符串 2017-12-30 06:58:33 +0800 CST
  • Martin Hope
    Bagas Sanjaya 为什么 Linux 使用 LF 作为换行符? 2017-12-20 05:48:21 +0800 CST

热门标签

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve