Created
December 26, 2021 22:56
-
-
Save dapize/72a284fe89ad87feb6687a1bbd9ca0a0 to your computer and use it in GitHub Desktop.
Temp Sensors
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
| # first, install | |
| sudo aptitude -y install lm-sensors | |
| # after, lets to detect our sensors | |
| sudo sensors-detect | |
| # after type: yes, yes, yes, to all | |
| # lets to see the temp with the command: | |
| sensors | |
| # AND THAT IS ALL !!!! | |
| # NOTE: if you can see every second the new temp you can type the next command: | |
| watch -n 1 sensors | |
| # dont forget press CTRL + C to kill the process |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment