Created
January 26, 2014 19:06
-
-
Save larrybolt/8637620 to your computer and use it in GitHub Desktop.
This file contains 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
# get cpu temp | |
/opt/vc/bin/vcgencmd measure_temp | |
# get lists with most cpu-consuming processes | |
top -b -n 1 | head -n 12 | |
ps -eo pcpu,pid,user,args | sort -k 1 -r | head -6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment