解决笔记本无线网卡发热高的问题! 已通过 实验!

包含网卡/无线网的网络问题和ADSL/校园网/宽带拨号支持及代理/共享等网络使用问题
回复
头像
toblackmagic
帖子: 68
注册时间: 2010-08-02 3:03

解决笔记本无线网卡发热高的问题! 已通过 实验!

#1

帖子 toblackmagic » 2010-08-13 15:37

首先你看下你的无线网卡指示灯是不是不停的闪烁! 如果是,那么这个就是导致你的无线网卡比较热的原因! 因为无线网卡处于高速搜索状态,这个在目前linux新版本下应该是个bug。

解决办法:从英文官方ubuntu社区找来的原话。

代码: 全选

Create the a file called iwl-no-blink in /etc/network/if-up.d
in the file put the following:
Code:

#!/bin/sh
if [ "$IFACE" = "wlan0" ]; then
	for dir in /sys/class/leds/iwl-phy*X; do
		echo none > $dir/trigger
	done
fi

chmod it to be executable:
Code:

chmod 755 iwl-no-blink

Reboot

No more flashy light. Browse the web happier
翻译后:
1、首先在目录/etc/network/if-up.d 下创建文件 iwl-no-blink
2、编辑文件内容

代码: 全选

#!/bin/sh
if [ "$IFACE" = "wlan0" ]; then
	for dir in /sys/class/leds/iwl-phy*X; do
		echo none > $dir/trigger
	done
fi
3、设置文件权限

代码: 全选

chmod 755 iwl-no-blink
4、重新启动计算机

英文不大好,不知道是不是会出现理解错误,但经过跟人测试,无线网卡已经处于温热状态! 期待其他小白来测试,并将测试结果发到这个帖子里面来方便他人查阅。

如果测试半小时没什么明显变化请编辑 iwl-no-blink文件内容如下再进行测试

代码: 全选

#!/bin/sh
if [ "$IFACE" = "wlan0" ]; then
for dir in /sys/class/leds/iwl-phy*; do
echo 0 > $dir/brightness
done
fi
上次由 toblackmagic 在 2010-08-13 15:40,总共编辑 1 次。
头像
toblackmagic
帖子: 68
注册时间: 2010-08-02 3:03

Re: 解决笔记本无线网卡发热高的问题! 已通过 实验!

#2

帖子 toblackmagic » 2010-08-13 15:41

你太速度来吧!
头像
rnamatrix
帖子: 4
注册时间: 2010-08-23 20:29

Re: 解决笔记本无线网卡发热高的问题! 已通过 实验!

#3

帖子 rnamatrix » 2010-09-20 20:54

如果是无线网卡的问题,那么关掉无线网卡后为什么没效果呢?
头像
snowtown86
帖子: 1239
注册时间: 2009-06-13 16:01

Re: 解决笔记本无线网卡发热高的问题! 已通过 实验!

#4

帖子 snowtown86 » 2010-09-20 22:28

我的不閃爍,一直是藍色的
头像
杨飞ubuntu
帖子: 377
注册时间: 2009-11-28 5:07
来自: 甘肃庆阳
联系:

Re: 解决笔记本无线网卡发热高的问题! 已通过 实验!

#5

帖子 杨飞ubuntu » 2010-09-21 1:24

我的atom发热
头像
wenhacxx
帖子: 171
注册时间: 2006-05-13 14:38

Re: 解决笔记本无线网卡发热高的问题! 已通过 实验!

#6

帖子 wenhacxx » 2011-08-06 13:18

:em11 :em11 谢谢lz,我的无线网卡也是很热。。灯不停地闪
头像
tang.zhe
帖子: 1505
注册时间: 2010-07-15 13:31

Re: 解决笔记本无线网卡发热高的问题! 已通过 实验!

#7

帖子 tang.zhe » 2011-08-07 20:11

mark :em11
回复