web-dev-qa-db-ja.com

cpufreq gnome拡張機能が省電力に戻り続ける

Cpufreq gnome拡張機能を使用しています。手動でパフォーマンスに設定すると、1分ほどで省電力に戻ります。誰が舞台裏で何が起こっているか知っていますか?

Cat /etc/init.d/cpufrequtilsの出力

#!/bin/sh
### BEGIN INIT INFO
# Provides:       cpufrequtils
# Required-Start: $remote_fs loadcpufreq
# Required-Stop:
# Default-Start:  2 3 4 5
# Default-Stop:
# Short-Description: set CPUFreq kernel parameters
# Description: utilities to deal with CPUFreq Linux 
#   kernel support
### END INIT INFO
# 

DESC="CPUFreq Utilities"

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin CPUFREQ_SET=/usr/bin/cpufreq-set CPUFREQ_INFO=/usr/bin/cpufreq-info CPUFREQ_OPTIONS=""

# use lsb-base . /lib/lsb/init-functions

# Which governor to use. Must be one of the governors listed in:
#   cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
#
# and which limits to set. Both MIN_SPEED and MAX_SPEED must be values
# listed in:
#   cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
# a value of 0 for any of the two variables will disabling the use of 
# that limit variable.
#
# WARNING: the correct kernel module must already be loaded or compiled in.
# 
# Set ENABLE to "true" to let the script run at boot time.
# 
# eg:   ENABLE="true"
#   GOVERNOR="ondemand"
#   MAX_SPEED=1000
#   MIN_SPEED=500

ENABLE="true" GOVERNOR="ondemand" MAX_SPEED="0" MIN_SPEED="0"

check_governor_avail() {    info="/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors"     if [ -f $info ] && grep -q "\<$GOVERNOR\>" $info ; then         return 0;   fi  return 1; }

[ -x $CPUFREQ_SET ] || exit 0

if [ -f /etc/default/cpufrequtils ] ; then  . /etc/default/cpufrequtils fi

# if not enabled then exit gracefully [ "$ENABLE" = "true" ] || exit 0

if [ -n "$MAX_SPEED" ] && [ $MAX_SPEED != "0" ] ; then  CPUFREQ_OPTIONS="$CPUFREQ_OPTIONS --max $MAX_SPEED" fi

if [ -n "$MIN_SPEED" ] && [ $MIN_SPEED != "0" ] ; then  CPUFREQ_OPTIONS="$CPUFREQ_OPTIONS --min $MIN_SPEED" fi

if [ -n "$GOVERNOR" ] ; then    CPUFREQ_OPTIONS="$CPUFREQ_OPTIONS
--governor $GOVERNOR" fi

CPUS=$(cat /proc/stat|sed -ne 's/^cpu\([[:digit:]]\+\).*/\1/p') RETVAL=0 case "$1" in   start|force-reload|restart|reload)      log_action_begin_msg "$DESC: Setting $GOVERNOR CPUFreq governor"        if check_governor_avail ; then          for cpu in $CPUS ; do
                log_action_cont_msg "CPU${cpu}"
                $CPUFREQ_SET --cpu $cpu $CPUFREQ_OPTIONS 2>&1 > /dev/null || \
                    RETVAL=$?           done            log_action_end_msg $RETVAL ""       else            log_action_cont_msg "disabled, governor not available"          log_action_end_msg $RETVAL      fi      ;;  stop)       ;;  *)      echo "Usage: $0 {start|stop|restart|reload|force-reload}"       exit 1 esac

exit 0

エラーは、indicator-cpuをcpufreq gnome拡張に置き換えた17.10にあるようです。この拡張を回避し、コマンドラインを使用すると、以下のソリューションが機能します。

1
Michael Jarret

/etc/init.d/cpufrequtilsファイルの変更:

GOVERNOR="ondemand"

に:

GOVERNOR="performance"

残りの行はそのままにします。保存して再起動します。


TL; DR-以下の古い回答

Intelスピードガバナーに関する限り:

  • ondemandモードは数年前に廃止されました。
  • performanceモードは、powersaveモードに比べてほとんど改善されていません。

つまり、プロセッサはperformancepowersaveの間の選択をサポートしていない可能性があるということです。

使用可能なスピードガバナーを表示するには、次のコマンドを使用します。

$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors 
performance powersave

複数のガバナーがある場合は、このコマンドで現在使用されているものを確認できます。

$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
powersave

プロセッサをperformanceモードに変更するには:

$ echo performance | Sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
performance

CPU使用率が約5%低下しますが、プロセッサに応じて速度が約1000 MHzから3000 MHzに増加し、温度が約10度急上昇します。

CPU Performance mode.gif


Ubuntuの最初の起動時にpowersaveモード(常に使用するように)に設定されていても、performanceモードで実行されることに気付きました最終的にpowersaveモードに入る90秒前。

それにもかかわらず、上記の適切なコマンドを使用してガバナーをパフォーマンスモードに手動で設定した後。上記の適切なコマンドを使用して確認され、上記のconky表示によって二重に確認されたように、現在10分間パフォーマンスモードのままです。


performanceに設定されたガバナーを30分間放置したところ、うまく機能しました。一部の読者は、performanceガバナーのスイッチをオフにしてデフォルトpowersaveガバナーに戻すと、conkyディスプレイがどのようになるか興味があります。

CPU powersave.gif

CPU使用率は5%急上昇しましたが、CPU周波数は1500 MHz低下し、温度は約10度低下しました。全体として、powersaveモードはほとんどの構成に最適です。

1