我试图让我的粉丝在运行 Ubuntu 18.10 的 ASUS B350M M/B 上得到控制。风扇100%不间断运行,运行Windows时当然不存在这个问题。我已经为 fancontrol 设置了 pwmconfig。我尝试使用 pwmconfig 自动生成 fancontrol 配置文件,并且尝试编辑配置文件,希望能够在没有运气的情况下解决此错误。当我运行时,sudo fancontrol
我总是得到以下输出:
Loading configuration from /etc/fancontrol ...
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
grep: /etc/fancontrol: Is a directory
Some mandatory settings missing, please check your config file!
所以问题似乎是我的配置文件显然缺少一些“强制性设置”,但据我所知不是。我保存为 /etc/fancontrol/pwmcfg.gvA0m0UuMG 的 fancontrol 配置文件包含以下内容:
# Configuration file generated by pwmconfig, changes will be lost
INTERVAL=2
DEVPATH=hwmon0=devices/platform/it87.656
DEVNAME=hwmon0=it8655
FCTEMPS=hwmon0/pwm1=hwmon0/temp2_input hwmon0/pwm3=hwmon0/temp1_input
FCFANS=hwmon0/pwm1=hwmon0/fan1_input hwmon0/pwm3=hwmon0/fan3_input
MINTEMP=hwmon0/pwm1=20 hwmon0/pwm3=20
MAXTEMP=hwmon0/pwm1=60 hwmon0/pwm3=60
MINSTART=hwmon0/pwm1=150 hwmon0/pwm3=190
MINSTOP=hwmon0/pwm1=0 hwmon0/pwm3=90
有没有人有任何可能适用于这种情况的想法或解决方法?我的目标是让风扇控制正常工作,以便我的粉丝能够以合理的速度工作。
首先,我建议引导到 Ubuntu Live DVD/USB 并查看粉丝是否在那里表现。如果它们运行得很快,您可能希望检查 BIOS 的风扇控制设置。
18.10似乎不
pwmconfig
支持它。要运行
fancontrol
,您需要lm-sensors
.我建议
thermald
而不是上面的...要安装
thermald
...sudo apt-get 更新
sudo apt-get install thermod
Thermald
附带一个默认配置文件/etc/thermald/thermal-conf.xml
,可以控制大多数计算机,但可能需要针对某些计算机进行自定义。有关man thermal-conf.xml
一些详细信息和示例,请参阅。修改配置文件后,停止thermald
并重新启动它:安装 thermod 后,我会停止该
thermald
过程,并手动运行它sudo thermald --no-daemon
以实时观察其动作。此实时信息可用于创建您自己的自定义 thermo-conf.xml 文件。有关man thermald
更多信息,请参阅。您可以在 Ask Ubuntu 上搜索,
thermald
以查看以前的答案。https://wiki.ubuntu.com/Kernel/PowerManagement/ThermalIssues是一个很好的入门参考
/etc/fancontrol 应该是一个文件,而不是一个目录。