夏天到了,笔记本过热是最近一个常见的问题。监控硬件温度或许可以帮助你诊断笔记本为什么会过热。本篇中,我们会了解如何在ubuntu中检查cpu的温度。
监控cpu和主板的温度
监控nvidia gpu的文档
监控硬盘的温度
监控风扇的速度
监控cpu的利用率
psensor最新的版本同样提供了ubuntu中的指示小程序,这样使得在ubuntu中监控温度变得更加容易。你可以选择在面板的右上角显示温度。它还会在温度上过阈值后通知。
<a target="_blank"></a>
<code>sudo apt-get install lm-sensors hddtemp</code>
接着开始检测硬件传感器:
<code>sudo sensors-detect</code>
要确保已经工作,运行下面的命令:
<code>sensors</code>
它会给出下面这样的输出:
<code>acpitz-virtual-0</code>
<code>adapter: virtual device</code>
<code>temp1: +43.0°c (crit = +98.0°c)</code>
<code></code>
<code>coretemp-isa-0000</code>
<code>adapter: isa adapter</code>
<code>physical id 0: +44.0°c (high = +100.0°c, crit = +100.0°c)</code>
<code>core 0: +41.0°c (high = +100.0°c, crit = +100.0°c)</code>
<code>core 1: +40.0°c (high = +100.0°c, crit = +100.0°c)</code>
如果一切看上去没问题,使用下面的命令安装psensor:
<code>sudo apt-get install psensor</code>
安装完成后,在unity dash中运行程序。第一次运行时,你应该配置psensor该监控什么状态。
如果你想要在面板中显示温度,进入sensor preferences:
在 application indicator 菜单下,选择你想要显示温度的组件并勾上 display sensor in the label 选项。
进入 preferences->startup 并选择 launch on session startup 使每次启动时启动psensor。
就是这样。你所要做的就是在这里监控cpu温度。你可以时刻注意并帮助你找出使计算机过热的进程。
原文发布时间为:2015-06-24
本文来自云栖社区合作伙伴“linux中国”