我跟着本指南关于如何在 Ubuntu 中控制风扇速度,但它不适用于我的笔记本电脑(Dell Inspiron 15r)。
我安装了流明传感器和风扇控制软件包。然后我配置流明传感器输入:
sudo sensors-detect
我对所有问题的回答都是“是”。最后我收到了这条信息:
驱动程序
coretemp': * Chip
英特尔数字热传感器'(置信度:9)要加载所需的一切,请将其添加到 /etc/modules:
- - 剪这里 - -
#Chip drivers
核心温度
- - 剪这里 - -
- 我将建议的行添加到
/etc/modules
。 - 我重新启动了笔记本电脑。
现在的问题是:当我尝试配置 fancontrol 输入时:
sudo pwmconfig
我收到一个错误:
/usr/sbin/pwmconfig:没有安装支持 pwm 的传感器模块
我花了一天的大部分时间寻找解决方案,但没有成功。
我现在应该怎么做?
答案1
我使用 i8kutils 部分解决了该问题。以下是相关指南:
Keenformatics - 如何解决 Ubuntu 中的戴尔笔记本电脑风扇问题
以及 askubuntu 上的讨论:
戴尔 Inspiron 5521 i7-3317U 风扇 CPU 噪音太大
以下是 Keenformatics 网站(我的博客)上写的主要步骤。如何解决 Ubuntu 中的戴尔笔记本电脑风扇问题
- 首先,让我们下载并安装 i8kutils。打开你的终端并输入:
sudo apt-get install i8kutils
- 现在你必须将 i8k 添加到你的模块中。打开模块文件:
sudo gedit /etc/modules
并添加字符串“i8k“(不带引号)添加到文件中。保存并退出。
创建
i8k.conf
文件sudo vim /etc/modprobe.d/i8k.conf
并用以下代码填充它:
options i8k force=1
注意:一些较旧的指南会告诉您创建一个 /modprobe.d/options 文件。Ubuntu 上不再使用“options”文件。重要的是您创建一个带有 .conf 扩展名的文件(文件名并不重要,但为了清楚起见,我决定将其命名为 i8k.conf)。因此请小心较旧的 i8kmon 配置指南。
- 现在重新启动计算机,或运行此代码以使 i8k 运行:
sudo modprobe i8k force=1
- 我们现在将创建一个 i8kmon.conf 文件,它将告诉 i8kmon 实用程序如何运行。
sudo gedit /etc/i8kmon.conf
粘贴以下代码:
# Run as daemon, override with --daemon option
set config(daemon) 0
# Automatic fan control, override with --auto option
set config(auto) 1
# Report status on stdout, override with --verbose option
set config(verbose) 1
# Status check timeout (seconds), override with --timeout option
set config(timeout) 20
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
set config(0) {{-1 0} -1 40 -1 40}
set config(1) {{-1 1} 30 60 30 60}
set config(2) {{-1 2} 53 128 53 128}
# For computer with 2 fans, use a variant of this instead:
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt}
# set config(0) {{-1 0} -1 52 -1 65}
# set config(1) {{-1 1} 41 66 55 75}
# set config(2) {{-1 1} 55 80 65 85}
# set config(3) {{-1 2} 70 128 75 128}
# end of file
已编辑此内容以匹配我的 Dell Inspiron 15r 5521 风扇配置(我希望我做得不错)。如果您需要更多信息,请查看 Ubuntu 手册上的文档:http://manpages.ubuntu.com/manpages/gutsy/man1/i8kmon.1.html
- 现在你应该可以运行i8kmon从你的终端查看它是否(以及如何)工作。只需运行:
i8kmon
完成的!