HP dv6 7040tx 过热问题

HP dv6 7040tx 过热问题

正如标题所述,我的笔记本电脑是 HP dv6 7040tx,具有以下双显卡:

1.英特尔4000

2.Nvidia 630M

我浏览了一些网站,发现我的两个显卡都在使用。因此,建议我安装熊蜂

我安装了它,并使用 optirun 运行我的游戏。但是,现在我的笔记本电脑开始发热了!我正在通过 LAN 复制文件,并且正在下载 torrent 文件。CPU 使用率不高。它保持在 5% 左右。但是,传感器值显示如下:

acpitz-virtual-0
Adapter: Virtual device
temp1:        +86.0°C  
temp2:        +86.0°C  (crit = +120.0°C)
temp3:        +30.0°C  (crit = +120.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +86.0°C  (high = +87.0°C, crit = +105.0°C)
Core 0:         +86.0°C  (high = +87.0°C, crit = +105.0°C)
Core 1:         +86.0°C  (high = +87.0°C, crit = +105.0°C)
Core 2:         +81.0°C  (high = +87.0°C, crit = +105.0°C)
Core 3:         +81.0°C  (high = +87.0°C, crit = +105.0°C)

有什么方法可以控制这个吗或者我应该做点别的吗?

答案1

解决笔记本电脑过热问题和耗电问题的答案如下:

这是混合笔记本电脑的指南,代码适用于终端(我推荐至少 Ubuntu 13.10)。

对于 AMD/Intel,在终端中运行此命令(先卸载其他驱动程序):

安装 fglrx fglrx-pxpress

然后:sudo amdcccle 并将图形设置为英特尔图形:)

对于 Nvidia(首先卸载任何其他驱动程序):

sudo apt-get 安装 nvidia-319 nvidia-settings-319 nvidia-prime

对于笔记本电脑:

TLP 可帮助笔记本电脑以比其他任何方式更高效的方式减少耗电量:

第一:卸载笔记本模式工具

sudo apt-get 删除 laptop-mode-tools

然后安装:

sudo add-apt-repository ppa:linrunner/tlp sudo apt-get 更新 sudo apt-get 安装 tlp tlp-rdw

最后启动它:

sudo tlp 启动

有了它,您将修复导致 Ubuntu 过热的损坏软件包,并且电池寿命将延长约 2 小时。

答案2

是的,有一个丑陋的黑客程序,需要安装,以便在启动时关闭你的独立显卡,并在 Ubuntu 上禁用它。我认为这应该没问题,因为它会完全冷却你的系统

步骤 1. 转到终端(alt+ctrl+t)并输入:

sudo gedit /etc/rc.local

步骤2.在exit 0之前添加以下几行:

echo IGD > /sys/kernel/debug/vgaswitcheroo/switch

echo OFF > /sys/kernel/debug/vgaswitcheroo/switch

因此你的 rc.local 看起来像这样:

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

echo IGD > /sys/kernel/debug/vgaswitcheroo/switch

echo OFF > /sys/kernel/debug/vgaswitcheroo/switch

exit 0

步骤 3:保存并退出 gedit,然后输入:

sudo reboot

在需要时输入您的密码。

基本上,您要做的就是切换到集成 (IGD) 显卡。然后关闭另一个。

相关内容