2021-05-12 14:32:11
Ubuntu 18.04安裝tlp實現電源管理,解決風扇狂轉問題
Ubuntu 18.04系統的風扇管理就沒有Windows強大,有些機器的的噪音很影響平時的工作,又不想換風扇,現在整理了這篇文章解決Ubuntu電源管理的一些問題。
更多參考:https://www.linuxidc.com/Linux/2017-12/149232.htm
系統: Ubuntu 18.04.4 LTS
問題:CPU風扇聲音大
解決:安裝tlp
目前,tlp是我試過的唯一可以在18.04,16.04,14.04完美控制CPU和風扇的軟體
[linuxidc@linux:~/www.linuxidc.com]$ sudo add-apt-repository ppa:linrunner/tlp
[linuxidc@linux:~/www.linuxidc.com]$ sudo apt-get install tlp tlp-rdw
設定
sudo gedit /etc/tlp.conf
會出現組態檔,要使該行生效的意思,就要去掉改行前面的"#"
# Set to 0 to disable, 1 to enable TLP.
TLP_ENABLE=1
設定數值=1,確保TLP是生效的.
以下也是需要修改的地方
# Set Intel P-state performance: 0..100 (%)
# Limit the max/min P-state to control the power dissipation of the CPU.
# Values are stated as a percentage of the available performance.
# Requires an Intel Core i processor with intel_pstate driver.
CPU_MIN_PERF_ON_AC=0
CPU_MAX_PERF_ON_AC=60
CPU_MIN_PERF_ON_BAT=0
CPU_MAX_PERF_ON_BAT=30
這個選項前面原先是有#的,在修改好CPU_MAX_PERF_ON_AC後儲存退出。
最後, 在終端輸入,啟動電源模式
sudo tlp ac
如果你想進一步設定,比如說關閉CPU的睿頻功能,改成0即可
# Set the CPU "turbo boost" feature: 0=disable, 1=allow
# Requires an Intel Core i processor.
# Important:
# - This may conflict with your distribution's governor settings
# - A value of 1 does *not* activate boosting, it just allows it
CPU_BOOST_ON_AC=0
CPU_BOOST_ON_BAT=0
如果沒效果,請重新啟動電腦,或者看看是不是開啟了ac模式,或者是不是#忘記去掉了,這時電腦的聲音應該安靜下來了。
相關文章