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


16

我遵循了有关如何在Ubuntu中控制风扇速度的指南,但是不适用于我的笔记本电脑(Dell Inspiron 15r)。

我安装了lm传感器安装lm传感器风扇控制安装风扇控制软件包。然后,我通过键入以下命令配置了lm-sensors

sudo sensors-detect

我对所有问题都回答是。最后,我收到以下消息:

驱动程序“ coretemp': * Chip英特尔数字热传感器”(置信度:9)

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

- - 剪这里 - -

#Chip drivers

核心温度

- - 剪这里 - -

  • 我在中添加了建议的行/etc/modules
  • 我重启了笔记本电脑。

现在的问题是:当我尝试配置fancontrol类型时:

sudo pwmconfig

我收到一个错误:

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

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

我现在应该怎么办?

Answers:


9

我使用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
    

    已对其进行编辑以匹配我的Dell Inspiron 15r 5521风扇配置(我希望我做得很好)。如果您需要更多信息,请查看Ubuntu手册上的文档:http : //manpages.ubuntu.com/manpages/gutsy/man1/i8kmon.1.html

  6. 现在,您应该可以从终端运行i8kmon,并查看它是否(以及如何)运行。只需运行:

    i8kmon

完蛋了!


5
这对hp有效吗?
不朽的玩家,

@ImmortalPlayer记录到launchpad.net/i8kutils,仅适用于某些型号的Dell计算机...
Bo rislav
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.