CPU温度 [英] CPU temperature

查看:89
本文介绍了CPU温度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




随着时间的推移,CPU的温度是否正常增加?


我有一个Athlon XP 2100+,我看到温度现在是51C,它曾经是42美元到44美元左右。


任何人有什么想法吗?

Hi,

Is it normal for the temperature of your CPU to increase as time goes on?

I''ve got an Athlon XP 2100+ and I see that the temp is now at 51C where it
used to be around 42 to 44.

Anyone have any ideas?

推荐答案

2008年6月14日16:21,kid joe写道:
On 14 Jun 2008 at 16:21, kid joe wrote:

随着时间的推移,CPU的温度是否正常增加?


我有一台Athlon XP 2100+而且我看到现在的温度在51C它

曾经是42到44左右。
Is it normal for the temperature of your CPU to increase as time goes on?

I''ve got an Athlon XP 2100+ and I see that the temp is now at 51C where it
used to be around 42 to 44.



你可以试着看看CPU风扇是否有用灰尘堵塞了b $ b。这是最可能发生的事情。


51虽然并不危险。我不担心,除非它超过

60C - 然后你应该检查你的制造商的手册。现代桌面

CPU的最高建议温度为65到85美元之间。

You could try having a look to see if the CPU fan has got clogged up
with dust - that''s the most likely thing.

51 isn''t dangerously high though. I wouldn''t worry unless it gets above
60C - then you should check your manufacturer''s handbook. Modern desktop
CPUs have a maximum recommended temperature of anything between 65 and
85 centigrade.


kid joe< sp ****** @ spamtrap.invalidwrites:
kid joe <sp******@spamtrap.invalidwrites:

随着时间的推移CPU的温度是否正常?


我有一台Athlon XP 2100+,我看到温度现在是51C,那时它的价格大约是42到44美元。 br />

任何人都有任何想法?
Is it normal for the temperature of your CPU to increase as time goes on?

I''ve got an Athlon XP 2100+ and I see that the temp is now at 51C where it
used to be around 42 to 44.

Anyone have any ideas?



这是comp.lang.c,它讨论了C编程语言(不,

C不代表Celcius )。尝试在硬件组中询问,或者只需进行Google搜索即可获得



-

Keith Thompson(The_Other_Keith)< a href =mailto:ks *** @ mib.org> ks *** @ mib.org < http://www.ghoti.net/~kst>

诺基亚

我们必须做点什么。这是事情。因此,我们必须这样做。

- Antony Jay和Jonathan Lynn,是部长

This is comp.lang.c, which discusses the C programming language (no,
the C doesn''t stand for Celcius). Try asking in a hardware group, or
just doing a Google search.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"


孩子乔说:
kid joe said:




随着时间的推移,CPU的温度是否正常增加?


我有一台Athlon XP 2100+,我看到温度现在是51C,那时它的价格大约是42到44美元。


任何人都有任何想法?
Hi,

Is it normal for the temperature of your CPU to increase as time goes on?

I''ve got an Athlon XP 2100+ and I see that the temp is now at 51C where it
used to be around 42 to 44.

Anyone have any ideas?



这很容易解决。如您所知,所有计算机都是相同的,并且它们都包含一个热管理参数块,它存储在一个

文件中(您可能知道, * C中的所有*都是文件),它是

,旨在让您控制CPU的温度。 TMP是非常容易使用的
。只需打开它并写下新的值(表示,你会相信,或许你想要的是
,这是华氏,这真是唯一的障碍):


#include < stdio.h>


int main(无效)

{

double desired_temperature = 42.0;

double fahr = desired_temperature * 1.8 + 32.0;

FILE * new = tmpfile(); / *打开热管理参数块* /

if(new!= NULL)/ *小心 - 有时块不可用

因为计算机本身是更新它* /

{

fwrite(& fahr,1,sizeof fahr,new);

fclose(new);

}

返回0;

}


运行此程序,然后重新检查您的计算机温度。请记住

可能需要一段时间才能恢复温度。


如果您在此之后仍然遇到麻烦,请尝试取下电子泵,一根厚厚的电缆,通常是黑色但有时是灰色,直接送入

PSU(通常位于机器背面);它是因为性能原因而放在那里,但它是温度升高的主要因素。


-

理查德希思菲尔德< http://www.cpax.org.uk>

电子邮件:-http:// www。 + rjh @

谷歌用户:< http://www.cpax.org.uk/prg/writings/googly.php>

Usenet是一个奇怪的放置" - dmr 1999年7月29日

This is easy to fix. As you know, all computers are the same at heart, and
they all contain a Thermal Management Parameter block, which is stored in a
file (as you probably know, *everything* in C is a file) and which is
designed to allow you to control the temperature of your CPU. The TMP is
really easy to use. Just open it and write the new value (expressed, would
you believe, in Fahrenheit, which makes for the only hitch, really):

#include <stdio.h>

int main(void)
{
double desired_temperature = 42.0;
double fahr = desired_temperature * 1.8 + 32.0;
FILE *new = tmpfile(); /* open the Thermal Management Parameter block */
if(new != NULL) /* careful - sometimes the block isn''t available
because the computer itself is updating it */
{
fwrite(&fahr, 1, sizeof fahr, new);
fclose(new);
}
return 0;
}

Run this program, and then re-check your computer''s temperature. Bear in mind
that it may take a little while for the temperature to come back down.

If you''re still having trouble after that, try removing the electron pump, a
thick cable, typically black but sometimes grey, that feeds directly into the
PSU (normally found at the back of the machine); it is put there for
performance reasons, but it is a principal factor in temperature increase.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999


这篇关于CPU温度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆