我的机器 MSI GV62 7RD 上安装了 Windows10 和 Ubuntu20.04。微星龙腾Windows 上的应用程序清楚地实时显示了两个风扇的转速。但是,我无法在 Ubuntu 中获取风扇信息。
已经尝试过lm-sensors
,但没有关于风扇速度的信息!
我希望在我的“Vitals”gnome扩展中显示 CPU 风扇 RPM。
如果有人能指导我如何做到这一点就太好了。
答案1
运行后sudo sensors-detect
你应该有类似的输出:
To load everything that is needed, add this to /etc/modules:
#----cut here----
#chip drivers
coretemp
nct6775
#----cut here----
从输出中获取信息并输入终端
sudo modprobe nct6775 coretemp
用传感器检测输出中的模块名称替换 nct6775 和 coretemp(尽管我怀疑您会有相同的值)。