Created
May 6, 2016 03:49
-
-
Save zhenkyle/897e59e1479eee8b6c66be45805ea14d to your computer and use it in GitHub Desktop.
Solving intel_rapl: no valid rapl domains found in package 0 on ArchLinux Guest on Virualbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Problem | |
On Archlinux | |
`journalctl -p 3 -xb` | |
shows | |
`intel_rapl: no valid rapl domains found in package 0` | |
### Slove | |
``` | |
echo 'blacklist intel_rapl' > /etc/modprobe.d/modprobe.conf | |
mkinitcpio -p linux | |
reboot | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a quick thing, it should probably be
echo 'blacklist intel_rapl' >> /etc/modprobe.d/modprobe.conf
so that it's appended to rather than overwritingmodprobe.conf
, in case anything else is being blacklisted.