新款 Inspiron 在 20.04 LTS 上过热

新款 Inspiron 在 20.04 LTS 上过热

我今年购买了一台 DELL Inspiron 5518 (16gb, 512gb + Nvidia MX450)。该笔记本电脑正式支持 Ubuntu。我同时启动了 Windows 和 Ubuntu20.04但使用上差别很大。

在 Windows 上,它可以持续使用 5-6 小时,键盘上方(风扇所在位置)的发热几乎可以忽略不计

但在 Ubuntu 上,它几乎无法承受 1.5 小时,并且键盘的右上方非常热,手指无法长时间放在那里。

我安装了lmsensors并执行了sensors-detect。它只提示coretemp添加到/etc/modules,我也做了同样的事

运行时没有风扇信息sensors

重要更新 我现在做了一些观察

  1. sensors即使在非常炎热的时候也显示非常正常的温度。所以,我想可能是电池太热了。但acpitool显示温度不可用。

  2. 在 ubuntu 上风扇运转噪音很大,而在 Windows 上却很安静。

  3. tlpthermald均未产生任何效果。

  4. nvidia-settings不可用。安装后为空白,表示未检测到 nvidia。设置显示 GPU 为 Intel Iris。 sudo prime-select query显示on-demand。当我将其更改为时没有效果,nvidia因此我将其更改为intel以确保安全。

  5. 系统是最新的,并且也做到了sudo ubuntu-drivers autoinstall

试图

我发现可以通过在 Grub 中模拟 Windows 系统来纠正电源设置

/etc/default/grub,我有

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

我尝试过

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=!Windows 2020"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=! acpi_osi='Windows 2020'"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=! \"acpi_osi=Windows 2020\" "
(P.S. this was the solution all along, see answer below)

但无济于事。

欢迎任何建议。

答案1

经过大量的研究和实验,我找到了解决这个问题的方法。

问题似乎是 Bios/Grub 电源管理与 Ubuntu 之间的兼容性。例如,ACPI DSDT 需要一些不同的操作系统,而我们正在运行一些不同的操作系统。

现在,正如我在实验问题中提到的那样/etc/default/grub,我实际上缺少一个非常重要的步骤,那就是检查我的设备电源管理实际支持的 Windows OSI 版本。

(必须是 Windows,因为笔记本电脑在 Windows 上运行良好,因此我们的目标是将 Ubuntu 伪装成设备的 Windwos)

https://news.ycombinator.com/item?id=26747559

如上文所述,可以通过以下方式找到支持的 Windows OSI

sudo strings /sys/firmware/acpi/tables/DSDT | grep -i 'windows ' | sort
Microsoft Windows NT
Windows 2001
Windows 2001
Windows 2001.1
Windows 2001 SP1
Windows 2001 SP2
Windows 2006
Windows 2006
Windows 2009
Windows 2009
Windows 2012
Windows 2012
Windows 2013
Windows 2013
Windows 2015
Windows 2015

所以,这是我在文件中所做的最终编辑/etc/default/grub

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=! \"acpi_osi=Windows 2015\" "

这样,过热和电池问题就得到解决。

答案2

所有答案都很好,但我认为你可能遇到了硬件问题。我提到这一点只是为了以防万一,因为这是一种危险的情况,因为电池可能会爆炸。

附有图片 在此处输入图片描述

我的戴尔 XPS 电池坏了,风扇也过度运转以应对温度。

另外,仅指出一个软件问题,在我的笔记本电脑上,我发现 Windows 上的电池比 Linux 上的电池续航时间更长,尽管比例没有你的情况那么大。你应该检查 Linux 中运行的进程:

ps -aux htop top

按 CPU 排序。

某些进程可能会使用更多的 CPU,从而导致发热,使风扇辛苦工作,并消耗大量电池电量。

干杯

相关内容