使用非银行金融机构控制你的风扇

使用非银行金融机构控制你的风扇

我有 Windows 8 和 Ubuntu 12.04 双启动。当我使用 Windows 时,温度保持正常,但当我使用 Ubuntu 时,我的笔记本电脑会变热,温度在 5 分钟后升至 70-90 摄氏度,之后一直保持在 70 度以上。我尝试了很多方法,但都没有用。我安装了 Jupiter,尝试禁用 graphis,但不知道为什么它没有被禁用。有什么解决办法吗?

rittik@dell:~$ 传感器
coretemp-isa-0000
适配器:ISA 适配器
物理 ID 0:+84.0°C(高温 = +87.0°C,临界温度 = +105.0°C)
核心 0:+80.0°C(高温 = +87.0°C,临界温度 = +105.0°C)
核心 1:+84.0°C(高温 = +87.0°C,临界温度 = +105.0°C)

答案1

是过热,还是您也遇到了耗电问题?您可以尝试使用一个名为“cpu-freq”的小程序来限制您的机器的 CPU 频率,这个程序在运行 Ubuntu 14.10 的戴尔电脑上效果很好。

信息链接(基本上使我的电池寿命延长了一倍) http://www.noobslab.com/2013/07/how-to-improve-laptop-power-management.html

答案2

使用非银行金融机构控制你的风扇

我使用的是 Acer Aspire E5-573G,没有其他方法可以控制 CPU 风扇,但是非银行金融机构。我使用的是 Ubuntu 18.04。缺少适合我型号的确切配置文件,但 nbfc 与另一个类似的配置文件(Acer Aspire E5-575G)配合良好。如果您不知道要使用哪个配置文件,可以尝试: mono nbfc.exe config -r

我还编辑了默认配置文件,使风扇政策更加积极。

在 Ubuntu 上构建

您需要最新的 mono 版本,因此请根据需要进行更新:

sudo apt remove mono-complete
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt install mono-complete

克隆 git 仓库,构建

# git is needed, so install it
sudo apt install git

# clone the repository into /tmp/nbfc
git clone https://github.com/hirschmann/nbfc.git /tmp/nbfc
cd /tmp/nbfc

# Build NBFC
./build.sh

# After the build, "install" nbfc as properly
sudo mkdir /opt/nbfc
sudo cp -r /tmp/nbfc/Linux/bin/Release /opt/nbfc/
sudo cp /tmp/nbfc/Linux/{nbfc.service,nbfc-sleep.service} /etc/systemd/system/
sudo systemctl enable nbfc --now

# Now you need to discover a profile for your machine .
# All profiles are into /opt/nbfc/Configs as XML files
cd /opt/nbfc

# Run the following to discover a similar profile to your machine
mono nbfc.exe config -r

# Use one profile from the suggest list the previous command  
mono nbfc.exe config --apply "Config file name without extension"

# Now start the service
mono nbfc.exe start

# To show what is happen with your fan/machine, run
mono nbfc.exe status --all

nbfc 项目 wiki 内容丰富,文档齐全。如果您有疑问,可以查看一下。祝您好运。

相关内容