ubuntu中的风扇速度:pwmconfig没有安装支持pwm的传感器模块

我按照本指南关于如何在Ubuntu中控制风扇速度,但它不适用于我的笔记本电脑(戴尔Inspiron 15r)。

我安装了lm-sensors 安装lm-sensors 和fancontrol 安装fancontrol 包。 然后我键入lm-sensors配置:

sudo sensors-detect

我对所有问题都回答“是”。 最后我收到了这条消息:

驱动程序coretemp': * Chip英特尔数字热传感器’(信心:9)

要加载所需的所有内容,请将其添加到/ etc / modules:

– – 剪这里 – –

#Chip drivers

coretemp

– – 剪这里 – –

  • 我将建议的行添加到/etc/modules
  • 我重新启动了笔记本电脑。

现在问题是:当我尝试配置fancontrol输入时:

sudo pwmconfig

我收到一个错误:

/ usr / sbin / pwmconfig:没有安装支持pwm的传感器模块

我一天大部分时间都在寻找解决方案,但我没有运气。

我现在应该怎么做?

我使用i8kutils部分解决了这个问题。 这是一个关于它的指南:

Keenformatics – 如何在Ubuntu中解决戴尔笔记本电脑风扇问题

在这里讨论askubuntu:

戴尔Inspiron 5521 i7-3317U风扇CPU太吵了

以下是Keenformatics网站(我的博客)上写的主要步骤。

如何在Ubuntu中解决戴尔笔记本电脑风扇问题

  1. 首先,让我们下载并安装i8kutils。 打开你的终端并写下:

    sudo apt-get install i8kutils

  2. 现在你必须将i8k添加到你的模块中。 打开模块文件:

    sudo gedit /etc/modules

    并将字符串“ i8k ”(不带引号)添加到文件中。 保存并退出。

  3. 创建一个i8k.conf文件

    sudo vim /etc/modprobe.d/i8k.conf

    并用以下代码填写:

    options i8k force=1

    注意:某些较旧的指南会告诉您创建/modprobe.d/options文件。 Ubuntu上不再使用“选项”文件。 重要的是你创建了一个扩展名为.conf的文件(文件名并不重要,但为了清楚起见,我决定将其命名为i8k.conf)。 所以要注意较旧的i8kmon配置指南。

  4. 现在重新启动计算机,或运行此代码以使i8k运行:

    sudo modprobe i8k force=1

  5. 我们现在将创建一个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 

    这已经过编辑,以符合我的戴尔Inspiron 15r 5521风扇配置(我希望我做得很好)。 如果您想了解更多信息,请查看Ubuntu手册上的文档: http : //manpages.ubuntu.com/manpages/gutsy/man1/i8kmon.1.html

  6. 现在你应该可以从你的终端运行i8kmon ,看看它是否(以及如何)正常工作。 只需运行:

    i8kmon

完了!