web-dev-qa-db-fra.com

Activer Intel p_state Ubuntu 15.04

Comment activer Intel_pstate dans Ubuntu 15.04?

2
PlugaruT

Dans 15.04, il est activé par défaut grâce aux notes informatives @solsTiCe. vous pouvez vérifier cela vous-même

si grep -i pstate /boot/config-$(uname -r) dit oui, alors c'est comme ça.


Pour activer intel_pstate dans Ubuntu 14.04, éditez le fichier de configuration /etc/default/grub avec un éditeur de texte en tant que root.

gksu gedit /etc/default/grub

Et pour "GRUB_CMDLINE_LINUX_DEFAULT =", ajoutez "intel_pstate = enable", comme ceci:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_pstate=enable"

Enregistrez le fichier et mettez à jour Grub:

Sudo update-grub

Redémarrez votre système et pour vérifier si intel_pstate est activé, exécutez la commande suivante:

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

La commande ci-dessus doit renvoyer "intel_pstate".

source et plus d'informations

4
Maythux