More actions
HaileyKitty (talk | contribs) (Created from migrating) |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{Explanatory Guide | |||
|Device=Raspberry Pi | |||
|Type=Method | |||
|Difficulty=1. Easy | |||
}} | |||
{{Stub}} | |||
To test if a Raspberry Pi is receiving enough power, the <code>stress</code> package can be installed: | To test if a Raspberry Pi is receiving enough power, the <code>stress</code> package can be installed: |
Latest revision as of 20:44, 13 January 2024
Raspberry Pi PSU Test | |
---|---|
Type | Method |
Device(s) | Raspberry Pi |
Difficulty | ◉◌◌◌ Easy |
This article is a stub. You can help Repair Wiki grow by expanding it
To test if a Raspberry Pi is receiving enough power, the stress
package can be installed:
sudo apt update && sudo apt install stress
Let the following command run for a minute, then quit it with ctrl
+C
:
watch timeout 1s stress -m 4 --vm-bytes 50
Finally, check if the Pi has received enough power:
vcgencmd get_throttled
If the above command returns anything other than throttled=0x0
, the Pi is not receiving enough power. This can be caused by a weak power supply, a bad cable (too long, to thin...), or a faulty Pi.