分页: 1 / 1

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

发表于 : 2016-08-29 19:54
393406851
BIOS里没有相关设置。一开睿频风扇就呼呼的,明明cpu占用10%-20%就偶尔自动睿频。windows可以设置最大cpu使用99%。

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

发表于 : 2016-08-29 21:39
科学之子

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

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

代码: 全选

cat /proc/cpuinfo | grep model
cat /sys/devices/system/cpu/cpu0/cpufreq/{scaling_driver,scaling_available_governors}

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

发表于 : 2016-08-30 8:59
393406851
直接在etc/rc.local中设置了最大频率。不过温度还是没有降下来,windows下空载温度为30度,linux空载40度不降。

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

发表于 : 2016-08-30 11:23
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: