Ativar intel p_state Ubuntu 15.04

2

Como habilitar o Intel_pstate no Ubuntu 15.04?

    
por PlugaruT 30.05.2015 / 10:55

1 resposta

3

Em 15.04, ele é ativado por padrão graças às anotações informativas do @solsTiCe. você pode verificar isso você mesmo

se grep -i pstate /boot/config-$(uname -r) diz sim, então é assim.

Para ativar o intel_pstate no Ubuntu 14.04, edite o arquivo de configuração /etc/default/grub com um editor de texto como root

gksu gedit /etc/default/grub

E para "GRUB_CMDLINE_LINUX_DEFAULT=", adicione "intel_pstate = enable", assim:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_pstate=enable"

Salve o arquivo e atualize o Grub:

sudo update-grub

Reinicie seu sistema e para verificar se o intel_pstate está ativado, execute o seguinte comando:

cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver

O comando acima deve retornar "intel_pstate".

fonte e mais informações

    
por Maythux 30.05.2015 / 11:01