我正在使用Ubuntu12.04 LTS。我不确定它是CPU (i7)风扇还是视频卡风扇。
我试过使用lm-传感器和扇控
sudo sensors-detect
Now follows a summary of the probes I have just done.
Just press ENTER to continue:
Driver `w83627ehf':
* ISA bus, address 0x290
Chip `Nuvoton NCT6776F Super IO Sensors' (confidence: 9)
Driver `coretemp':
* Chip `Intel digital thermal sensor' (confidence: 9)
To load everything that is needed, add this to /etc/modules:
# Chip drivers
coretemp
w83627ehf像很多人一样,我也会犯错误:
/usr/sbin/pwmconfig: There are no pwm-capable sensor modules installed 以下是传感器的输出:
# sensors
radeon-pci-0100
Adapter: PCI adapter
temp1: +71.0°C
coretemp-isa-0000
Adapter: ISA adapter
Physical id 0: +44.0°C (high = +80.0°C, crit = +98.0°C)
Core 0: +44.0°C (high = +80.0°C, crit = +98.0°C)
Core 1: +40.0°C (high = +80.0°C, crit = +98.0°C)
Core 2: +43.0°C (high = +80.0°C, crit = +98.0°C)
Core 3: +42.0°C (high = +80.0°C, crit = +98.0°C)我希望有人已经为我的配置解决了这个问题,因为这似乎是一个问题,对许多人,有许多不同的建议。
发布于 2012-12-01 20:58:46
我自己回答这个问题,是因为我在Ask Ubuntu中找不到其他答案,尽管至少在几个Ubuntu bug报告中提到了一项工作。
参考Bug 748080 + Bug 563156
不幸的是,bug 748080现在被标记为将不会修复,就像Ubuntu11.04那样。
首先,我尝试将power_method设置为dynpm (动态):
sudo echo dynpm > /sys/class/drm/card0/device/power_methoddynpm似乎将温度保持在64摄氏度左右,但当显卡工作很辛苦时,屏幕会闪烁(例如快速滚动文件),并且可以听到风扇的上下移动。很烦人..。
到目前为止,对我来说最好的工作是将power_method设置为profile,然后将power_profile设置为low。
sudo echo profile > /sys/class/drm/card0/device/power_method
sudo echo low > /sys/class/drm/card0/device/power_profile风扇现在安静得多(仍然发出很小的噪音),没有闪烁或风扇旋转。“传感器”说温度是51摄氏度,尽管我不相信这是准确的。
使永久放在/etc/ To .地方:
echo low > /sys/class/drm/card0/device/power_profile注意:请注意,强迫power_profile降低可能会导致显示适配器过热。时间会证明..。
https://askubuntu.com/questions/194361
复制相似问题