Answers:
更新: @PressingOnAlways已通知我,该软件现已被开发人员视为旧版。有关停止支持的更多详细信息,请访问其旧版软件网站。
假设您已安装它,则/Applications
需要运行以下命令:
/Applications/TemperatureMonitor.app/Contents/MacOS/tempmonitor -c -l -a
地点:温度监控器
sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install iStats
watch --color istats
。
在BSD系统上,该sysctl
实用程序可以提供与/proc
Linux中的树类似的信息。它实际上从Xnu CPU Power Management(XCPM)报告一些CPU / GPU温度信息:
sysctl machdep.xcpm.cpu_thermal_level
sysctl machdep.xcpm.gpu_thermal_level
但是,与某些参考相比,这似乎不是温度读数,而只是温度水平的指示。
machdep.xcpm.cpu_thermal_level: 0
并machdep.xcpm.gpu_thermal_level: 0
在MacOS 10.12
machdep.xcpm.cpu_thermal_level: 58
)
这个开源命令行实用程序为我工作:https : //github.com/lavoiesl/osx-cpu-temp。
brew install osx-cpu-temp
我在OSX 10.11上
https://github.com/nicolargo/glances
这个在python上的工具具有内置的自动更新&&颜色,如果已经满足要求,则可以使用简单的curl或wget命令进行安装。要求
python >= 2.6 or >= 3.3 (tested with version 2.6, 2.7, 3.3, 3.4)
psutil >= 2.0.0
setuptools
psutil.cpu_temperature() AttributeError: 'module' object has no attribute 'cpu_temperature'
在2011年中期的MacMini和OSX 10.13.6上,我用于smc
设置和检查风扇速度以及osx-cpu-temp
温度。