How to check the speed of your CPU on Linux terminal

Please see here for further details. If you want to watch every 0.1 seconds, then execute the following command.
$ watch -n.1 "grep \"^[c]pu MHz\" /proc/cpuinfo"
If you want to watch every second, then execute the following command.
$ watch -n1 "grep \"^[c]pu MHz\" /proc/cpuinfo"

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.