笔记本电源管理问什么这么弱啊?睿频发热大,想关闭睿频怎么做?

笔记本/便携移动设备,手机平板等软硬件
回复
393406851
帖子: 18
注册时间: 2013-12-29 17:58
系统: 14,04

笔记本电源管理问什么这么弱啊?睿频发热大,想关闭睿频怎么做?

#1

帖子 393406851 »

BIOS里没有相关设置。一开睿频风扇就呼呼的,明明cpu占用10%-20%就偶尔自动睿频。windows可以设置最大cpu使用99%。
头像
vickycq
帖子: 4507
注册时间: 2011-03-20 13:12
系统: Debian
来自: 山东省寿光县
联系:

Re: 笔记本电源管理问什么这么弱啊?睿频发热大,想关闭睿频怎么做?

#3

帖子 vickycq »

393406851 写了:一开睿频风扇就呼呼的,明明cpu占用10%-20%就偶尔自动睿频
执行以下指令将结果全部复制贴上来

代码: 全选

cat /proc/cpuinfo | grep model
cat /sys/devices/system/cpu/cpu0/cpufreq/{scaling_driver,scaling_available_governors}
Debian 中文论坛 - forums.debiancn.org
欢迎所有 Debian GNU/Linux 用户
393406851
帖子: 18
注册时间: 2013-12-29 17:58
系统: 14,04

Re: 笔记本电源管理问什么这么弱啊?睿频发热大,想关闭睿频怎么做?

#4

帖子 393406851 »

直接在etc/rc.local中设置了最大频率。不过温度还是没有降下来,windows下空载温度为30度,linux空载40度不降。
poloshiao
论坛版主
帖子: 18279
注册时间: 2009-08-04 16:33

Re: 笔记本电源管理问什么这么弱啊?睿频发热大,想关闭睿频怎么做?

#5

帖子 poloshiao »

直接在etc/rc.local中设置了最大频率。
如果是 Ubuntu 16.04
預設開機初始化使用 systemd
要執行類似 /etc/rc.local 的功能 需要修正
參閱
http://askubuntu.com/a/759821
Check if the Compatibility service is loaded with
sudo systemctl status rc-local.service

建議
在 systemd 初始化機制下
要開機即執行一個 script file (例如 /etc/rc.local)
參閱
https://unix.stackexchange.com/question ... or-systemd
How to write startup script for systemd
There are mainly two approaches to do that:
1. If you have to run a script, you don't convert it but rather run the script via a systemd service.
2. For the most trivial cases, you can do without the script and execute a certain command directly:
回复