如何为每个 Linux 系统节省电池电量,以便您可以在不充电的情况下使用笔记本电脑更长时间?

如何为每个 Linux 系统节省电池电量,以便您可以在不充电的情况下使用笔记本电脑更长时间?

我正在寻找这个问题的通用解决方案。

因为我需要在外面编码。有时外部环境没有电源。

答案1

基础理论

  1. 降低CPU频率

  2. 关闭 GPU

  3. 不使用时关闭其他设备

适用于一般Linux系统

sudo apt install tlp
sudo systemctl enable tlp
sudo apt install powertop
sudo systemctl enable powertop
sudo apt install cpupower-gui
sudo cpupower-gui
# use cpupower-gui to change the cpu frequency to minimum value

对于 gnome(包括 ubuntu)

sudo apt install tlp
sudo systemctl enable tlp
sudo apt install powertop
sudo systemctl enable powertop

安装cpu-power-manager并将 cpu 频率更改为最小值:

https://extensions.gnome.org/extension/945/cpu-power-manager

对于 PopOS

sudo apt install powertop
sudo systemctl enable powertop

安装cpu-power-manager并将 cpu 频率更改为最小值:

https://extensions.gnome.org/extension/945/cpu-power-manager

从右上角,从电源部分,将图形模式设置为compute-graphics并将电源策略设置为battery-life

参考文献

相关内容