ubuntu系统调节GPU风扇转速

ubuntu系统调节GPU风扇转速

查看NVIDIA GPU温度和转速

1
nvidia-smi

有桌面的ubuntu

可以通过nvidia-settings进项图像化界面的设置。

无桌面ubuntu[headless linux server]

使用coolgpus脚本进行调节

https://github.com/andyljones/coolgpus
安装:
使用pypi进行安装

1
pip install coolgpus

使用用例:

1
2
3
4
5
6
7
8
9
# 将gpu风扇转速设置为99%
sudo $(which coolgpus) --speed 99 99

# 关闭设置
sudo $(which coolgpus)

# 或者也可以设置线性控制
# 这个模式下20℃以下转速为5%, 20-55℃之间转速为30%,依次类推
sudo $(which coolgpus) --temp 20 55 80 --speed 5 30 99

如果需要将coolgpus脚本当作一个系统服务长期运行的话,如果你的服务器采用systemd管理server的话,可以在/etc/systemd/system/coolgpus.service创建模板

1
2
3
4
5
6
7
8
9
10
11
12
13
[Unit]
Description=Headless GPU Fan Control
After=syslog.target

[Service]
ExecStart=/home/ajones/conda/bin/coolgpus --kill
Restart=on-failure
RestartSec=5s
ExecStop=/bin/kill -2 $MAINPID
KillMode=none

[Install]
WantedBy=multi-user.target

可以通过如下命令进行控制

1
2
sudo systemctl enable coolgpus
sudo systemctl start coolgpus
文章作者: ximikang
文章链接: http://ximikang.icu/2021/03/09/ubuntu%E7%B3%BB%E7%BB%9F%E8%B0%83%E8%8A%82GPU%E9%A3%8E%E6%89%87%E8%BD%AC%E9%80%9F/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Ximikang Blog