2

Я столкнулся с проблемами нагрева моего ультрабука под управлением Linux. Температура холостого хода для Win7 составляет ~ 45 С, а в Linux - ~ 55 С.

Выход датчиков

rohit@raijin ~ $ sensors
acpitz-virtual-0
Adapter: Virtual device
temp1:        +52.0°C  (crit = +99.0°C)
temp2:        +29.8°C  (crit = +99.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +55.0°C  (high = +86.0°C, crit = +100.0°C)
Core 0:         +54.0°C  (high = +86.0°C, crit = +100.0°C)
Core 1:         +55.0°C  (high = +86.0°C, crit = +100.0°C)

Вывод acpi

rohit@raijin ~ $ acpi -V
Battery 0: Full, 100%
Battery 0: design capacity 6100 mAh, last full capacity 6100 mAh = 100%
Adapter 0: on-line
Thermal 0: ok, 29.8 degrees C
Thermal 0: trip point 0 switches to mode critical at temperature 99.0 degrees C
Thermal 0: trip point 1 switches to mode passive at temperature 97.0 degrees C
Thermal 1: ok, 52.0 degrees C
Thermal 1: trip point 0 switches to mode critical at temperature 99.0 degrees C
Thermal 1: trip point 1 switches to mode active at temperature 71.0 degrees C
Thermal 1: trip point 2 switches to mode active at temperature 55.0 degrees C
Cooling 0: LCD 0 of 7
Cooling 1: Processor 0 of 10
Cooling 2: Processor 0 of 10
Cooling 3: Processor 0 of 10
Cooling 4: Processor 0 of 10
Cooling 5: Fan 1 of 1
Cooling 6: Fan 1 of 1
Cooling 7: Fan 1 of 1
Cooling 8: Fan 1 of 1
Cooling 9: Fan 0 of 1

ядро

rohit@raijin ~ $ uname -a
Linux raijin 3.2.0-27-generic #43-Ubuntu SMP Fri Jul 6 14:25:57 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

Согласно этому предложению, я изменил GRUB_CMDLINE_LINUX_DEFAULT в /etc /default /grub, чтобы включить

i915.i915_enable_rc6=7 i915.i915_enable_fbc=1 i915.lvds_downclock=1 drm.vblankoffdelay=1

Это не очень помогло.

То, что я хочу знать, это как установить Thermal 1: точка срабатывания 2, как показано на выходе ACPI? Ибо именно здесь ядра моего процессора бездействуют.

И как я могу довести свои ядра до ~ 45 С на холостом ходу?

0