Psensor Linux图形化硬件温度监控工具
一般来说,Linux管理员应该跟踪计算机硬件性能问题或意外故障。有时,由于各种软件问题(例如错误的显卡驱动程序、配置错误的风扇控制程序、故障的 CPU 频率缩放守护程序等)可能会出现过热问题。如果这些问题没有及早发现,可能会变成严重威胁,可能导致硬件永久损坏。因此,密切关注过热问题应该是您的首要任务。
Psensor 被认为是最简单的应用程序之一,用于监控硬件温度并从原始数据绘制实时分析,以便快速查看。
Psensor 的功能
以下是 psensor 工具的一些关键属性:
- 显示主板、CPU、GPU(Nvidia)、硬盘驱动器的温度
- 显示 CPU 风扇速度
- 能够显示**远程服务器**的**温度**和风扇速度
- 可以检测硬件设备并以文本格式报告温度
- 能够使用警报声音提醒关键温度问题
- 易于使用,配置要求低
依赖项
Psensor 依赖于**lm-sensor** 和**hddtemp** 软件包来获取有关温度和风扇速度的报告。要安装这些软件包,请使用以下命令:
# apt-get install lm-sensors hddtemp
以上命令需要**root权限**。
示例输出应如下所示:
Reading package lists... Done Building dependency tree Reading state information... Done Suggested packages: ksensors fancontrol sensord read-edid i2c-tools The following NEW packages will be installed: hddtemp lm-sensors 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. Need to get 137 kB of archives. After this operation, 673 kB of additional disk space will be used. Get:1 http://in.archive.ubuntu.com/ubuntu/ trusty/universe hddtemp amd64 0.3-beta15-52 [52.8 kB] ...
安装 Psensor
要从 Linux 命令行工具安装**Psensor**,请使用以下命令:
# apt-get install psensor
示例输出应如下所示:
Reading package lists... Done Building dependency tree Reading state information... Done The following extra packages will be installed: psensor-common The following NEW packages will be installed: psensor psensor-common 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. Need to get 89.5 kB of archives. After this operation, 715 kB of additional disk space will be used. Do you want to continue? [Y/n] Get:1 http://in.archive.ubuntu.com/ubuntu/ trusty/universe psensor-common all 0.8.0.3-1ubuntu3 [36.7 kB] Get:2 http://in.archive.ubuntu.com/ubuntu/ trusty/universe psensor amd64 0.8.0.3-1ubuntu3 [52.8 kB] ....
下载最新的稳定版 Psensor(即版本 1.1.3)源代码,并使用以下命令进行编译:
# wget http://wpitchoune.net/psensor/files/psensor-1.1.3.tar.gz # tar zxvf psensor-1.1.3.tar.gz # cd psensor-1.1.3/ # ./configure
Psensor 的测试和使用
要从 Linux 命令行打开**Psensor** 工具,请使用以下命令:
$ sensors
示例输出应如下所示:
acpitz-virtual-0 Adapter: Virtual device temp1: +46.5°C (crit = +99.0°C) dell_smm-virtual-0 Adapter: Virtual device Processor Fan: 0 RPM CPU: +46.0°C Ambient: +49.0°C Other: +44.0°C GPU: +16.0°C coretemp-isa-0000 Adapter: ISA adapter Physical id 0: +46.0°C (high = +100.0°C, crit = +100.0°C) Core 0: +46.0°C (high = +100.0°C, crit = +100.0°C) Core 1: +45.0°C (high = +100.0°C, crit = +100.0°C)
从上面,我们将能够清楚地看到结果以及 CPU 和处理器风扇的温度。
要从**桌面应用程序菜单**运行 Psensor 工具以获得图形化视图,输出应如下所示:
选中所有传感器以绘制图形。您可能会注意到如下所示的颜色代码:
自定义 Psensor
转到**菜单 Psensor** → **首选项** → **界面**
根据您的需求选择首选项。以下是“编辑首选项”窗口的示例屏幕截图:
恭喜!现在,您已经了解了“如何在 Linux 中监控硬件温度”。我们将在下一篇 Linux 文章中进一步学习此类命令。继续关注!
广告