AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 1089392
Accepted
mathco
mathco
Asked: 2018-11-02 22:14:40 +0800 CST2018-11-02 22:14:40 +0800 CST 2018-11-02 22:14:40 +0800 CST

戴尔 5471 Ubuntu 16.04 风扇噪音和过热

  • 772

我的电脑用了2个月。在最初的几个月里,如果电脑工作很辛苦或天气太热,那么电脑就会启动风扇并完成工作。现在,当我打开计算机风扇启动时(例如,如果我打开刚刚启动的浏览器风扇噪音并一直持续下去:()我不知道有什么问题。请帮助我解决这个问题。

  • 我做了 BIOS 闪存更新。
  • 我下载了 i8kmom (但该程序以 1 秒的间隔打开和关闭,所以我删除了它。

传感器输出:

    acpitz-virtual-0
Adapter: Virtual device
temp1:        +25.0°C  (crit = +107.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +40.0°C  (high = +100.0°C, crit = +100.0°C)
Core 0:         +38.0°C  (high = +100.0°C, crit = +100.0°C)
Core 1:         +38.0°C  (high = +100.0°C, crit = +100.0°C)
Core 2:         +38.0°C  (high = +100.0°C, crit = +100.0°C)
Core 3:         +37.0°C  (high = +100.0°C, crit = +100.0°C)

dell_smm-virtual-0
Adapter: Virtual device
Processor Fan: 3065 RPM
CPU:            +39.0°C  
Ambient:        +35.0°C  
SODIMM:         +37.0°C  
Other:          +40.0°C  

lspci | grep VGA 输出:

00:02.0 VGA compatible controller: Intel Corporation Device 5917 (rev 07)

lspci 输出:

    00:00.0 Host bridge: Intel Corporation Device 5914 (rev 08)
00:02.0 VGA compatible controller: Intel Corporation Device 5917 (rev 07)
00:04.0 Signal processing controller: Intel Corporation Skylake Processor Thermal Subsystem (rev 08)
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:15.0 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI (rev 21)
00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21)
00:1c.0 PCI bridge: Intel Corporation Device 9d10 (rev f1)
00:1c.4 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port (rev f1)
00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device 9d4e (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Device 9d71 (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
01:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Topaz XT [Radeon R7 M260/M265] (rev c1)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
03:00.0 Network controller: Intel Corporation Wireless 3165 (rev 79)
fan fancontrol dell dell-vostro
  • 1 1 个回答
  • 208 Views

1 个回答

  • Voted
  1. Best Answer
    stz184
    2019-08-28T05:35:15+08:002019-08-28T05:35:15+08:00

    您应该从 BIOS 控制风扇速度。您可以安装dell-bios-fan-control并将其设置为服务。

    git clone https://github.com/TomFreudenberg/dell-bios-fan-control.git
    cd dell-bios-fan-control
    make
    sudo mv dell-bios-fan-control /usr/bin/
    

    然后,创建一个包含以下内容的服务文件 /etc/systemd/system/dell-bios-fan-control.service:

    [Unit]
    Description=Disables BIOS control of fans at boot.
    Before=i8kmon.service
    
    [Service]
    Type=oneshot
    ExecStart=/usr/bin/dell-bios-fan-control 0
    RemainAfterExit=true
    ExecStop=/usr/bin/dell-bios-fan-control 1
    
    [Install]
    WantedBy=multi-user.target
    

    现在,使用启用服务

    sudo systemctl enable dell-bios-fan-control 
    

    然后启动这两个服务(i8kmon 和 dell-bios-fan-control)。应该没问题。

    • 0

相关问题

  • 风扇打不开。如何手动开启?

  • 笔记本电脑风扇在需要时无法打开

  • 我的东芝风扇不自动工作

  • 如何让我的电脑中的风扇在暂停时关闭?[关闭]

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve