Tiny Core Base > CorePlus

Any way to monitor cpu temp, remaining ram and disk read write check

<< < (2/2)

patrikg:
For temp without decimals.

--- Code: (bash) ---echo $(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))

--- End code ---
For more funny solution to support 2 decimals need bc.

--- Code: (bash) ---echo $'scale=2\n'$(cat /sys/class/thermal/thermal_zone0/temp)/1000 | bc

--- End code ---

Navigation

[0] Message Index

[*] Previous page

Go to full version