Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhenkyle/897e59e1479eee8b6c66be45805ea14d to your computer and use it in GitHub Desktop.
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
### 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
```
@PanisSupraOmnia
Copy link

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 overwriting modprobe.conf, in case anything else is being blacklisted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment