web-dev-qa-db-ja.com

Ubuntuセンサー、温度のしきい値を下げる方法は?

CPUの過熱により、PCがシャットダウンします。コマンド「sensors」を実行すると、次の出力が得られました

Adapter: Virtual device
temp1:        +66.0°C  (crit = +101.0°C)
temp2:        +66.0°C  (crit = +101.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Core 0:       +61.0°C  (high = +105.0°C, crit = +105.0°C)
Core 1:       +61.0°C  (high = +105.0°C, crit = +105.0°C)

highcritの温度は同じしきい値(105.0°C)になっているのを見ることができます。 PCをシャットダウンするのと同じしきい値である高しきい値。

highしきい値を正しい温度の70°Cに設定するにはどうすればよいですか?

6
giuseppe

コマンド付き:

Sudo sensors -u coretemp-isa-0000

各物理チップで使用可能なオプションを確認できます。

/etc/sensors.d/にファイルを作成:

Sudo touch /etc/sensors.d/isa-coretemp

次に、新しいファイルを編集します。

chip "coretemp-isa-0000"
   label temp2 "Core 0"
   compute temp2 @-20,@-20 

   label temp3 "Core 1"
   compute temp3 @-20,@-20
  • label temp2 "Core 0"はラベルのみを変更します。
  • compute temp2 @-20,@-20は、20度の高温(最初の@ -20)を下げ、評論家の温度も20度(2番目の@ -20)を下げます

sensorsと入力すると、新しい設定が表示されます。

man sensors.confを参照してください:

Only  certain  chips  support thermal sensor type change, 
and even these usually only support some of the types above.
Please refer to the specific driver documentation to find out which types
are supported by your chip.

In theory, the BIOS should have configured the sensor types correctly,
so you shouldn't have to touch them, but sometimes  it isn't the case.
3
girardengo