100% cpu en utilisation
Résolu/Fermé
seo610
Messages postés
596
Date d'inscription
mardi 9 février 2010
Statut
Membre
Dernière intervention
30 juin 2015
-
1 mai 2013 à 20:23
kalimusic Messages postés 14014 Date d'inscription samedi 7 novembre 2009 Statut Contributeur sécurité Dernière intervention 20 novembre 2015 - 19 mai 2013 à 09:12
kalimusic Messages postés 14014 Date d'inscription samedi 7 novembre 2009 Statut Contributeur sécurité Dernière intervention 20 novembre 2015 - 19 mai 2013 à 09:12
A voir également:
- Ubuntu cpu 100
- Temperature cpu - Guide
- Ubuntu iso - Télécharger - Systèmes d'exploitation
- Cpu stress - Télécharger - Informations & Diagnostic
- Processeur cpu - Guide
- Ubuntu 24.04 - Accueil - Ubuntu
5 réponses
ellegateau
Messages postés
65
Date d'inscription
samedi 31 octobre 2009
Statut
Membre
Dernière intervention
25 mai 2013
3
1 mai 2013 à 20:27
1 mai 2013 à 20:27
et si les drivers graphiques ne sont pas installés,c'est le CPU qui prend tout
seo610
Messages postés
596
Date d'inscription
mardi 9 février 2010
Statut
Membre
Dernière intervention
30 juin 2015
102
1 mai 2013 à 21:15
1 mai 2013 à 21:15
kworker utilise ~72%. Je viens de trouver une piste.
kalimusic
Messages postés
14014
Date d'inscription
samedi 7 novembre 2009
Statut
Contributeur sécurité
Dernière intervention
20 novembre 2015
3 027
1 mai 2013 à 21:20
1 mai 2013 à 21:20
Tu as vu ce topic : https://askubuntu.com/questions/176565/why-does-kworker-cpu-usage-get-so-high
seo610
Messages postés
596
Date d'inscription
mardi 9 février 2010
Statut
Membre
Dernière intervention
30 juin 2015
102
1 mai 2013 à 21:32
1 mai 2013 à 21:32
Oui, mais malheureusement, cela n'a pas eu l'effet voulu.
kalimusic
Messages postés
14014
Date d'inscription
samedi 7 novembre 2009
Statut
Contributeur sécurité
Dernière intervention
20 novembre 2015
3 027
1 mai 2013 à 21:40
1 mai 2013 à 21:40
Bon, je m'en doutais.
Tu as un dual boot avec Windows ?
Tu as un dual boot avec Windows ?
seo610
Messages postés
596
Date d'inscription
mardi 9 février 2010
Statut
Membre
Dernière intervention
30 juin 2015
102
19 mai 2013 à 04:33
19 mai 2013 à 04:33
Enfaite, en suivant ce lien : https://askubuntu.com/questions/176565/why-does-kworker-cpu-usage-get-so-high
J'ai réussi à régler mon problème.
Voici un copier/coller de la solution :
Instead I think this CPU usage is not normal and is related to the well-known kworker bug: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/887793
The solution for me and for many others was, first of all, find out the "gpe" that is causing the bad stuff with something like:
and check for an high value (mine was gpe13 - with a value like 200K - so, you have to change it accordingly, if differs). After that:
Add this line, so it will be executed every startup/reboot:
Save/exit. Then, to make it work also after wakeup from suspend:
Add this stuff:
Save/exit, done.
-- Ubuntu 12.10 on Samsung Chronos 7 series - Model no. NP700Z7C --
J'ai réussi à régler mon problème.
Voici un copier/coller de la solution :
Instead I think this CPU usage is not normal and is related to the well-known kworker bug: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/887793
The solution for me and for many others was, first of all, find out the "gpe" that is causing the bad stuff with something like:
grep . -r /sys/firmware/acpi/interrupts/
and check for an high value (mine was gpe13 - with a value like 200K - so, you have to change it accordingly, if differs). After that:
~ cp /sys/firmware/acpi/interrupts/gpe13 /pathtobackup ~ crontab -e
Add this line, so it will be executed every startup/reboot:
@reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
Save/exit. Then, to make it work also after wakeup from suspend:
~ touch /etc/pm/sleep.d/30_disable_gpe13 ~ chmod +x /etc/pm/sleep.d/30_disable_gpe13 ~ vim /etc/pm/sleep.d/30_disable_gpe13
Add this stuff:
#!/bin/bash case "$1" in thaw|resume) echo disable > /sys/firmware/acpi/interrupts/gpe13 2>/dev/null ;; *) ;; esac exit $?
Save/exit, done.
-- Ubuntu 12.10 on Samsung Chronos 7 series - Model no. NP700Z7C --
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
kalimusic
Messages postés
14014
Date d'inscription
samedi 7 novembre 2009
Statut
Contributeur sécurité
Dernière intervention
20 novembre 2015
3 027
19 mai 2013 à 09:12
19 mai 2013 à 09:12
Bonjour,
Merci de partager l'information avec les membres de CCM.
Bonne journée
Merci de partager l'information avec les membres de CCM.
Bonne journée