无线指示灯不亮的问题

笔记本/便携移动设备,手机平板等软硬件
回复
jinsir
帖子: 368
注册时间: 2009-02-21 20:58

无线指示灯不亮的问题

#1

帖子 jinsir » 2009-11-04 18:48

自从安装了Ubuntu后,不管是那个版本,无线指示灯就没有亮过,反正也能上网,也不求解决了!
yu123zxc
帖子: 6
注册时间: 2009-03-22 8:40

Re: 无线指示灯不亮的问题

#2

帖子 yu123zxc » 2009-11-04 21:01

我可能比较倒霉,装了9.10的,有线无线都不能用啊
头像
yus253
帖子: 389
注册时间: 2009-05-31 20:52
联系:

Re: 无线指示灯不亮的问题

#3

帖子 yus253 » 2009-11-06 16:36



在终端进入 /etc/network/if-up.d 目录

$cd /etc/network/if-up.d //注意这点要一步一步的cd下去先cd /etc->然后cd /etc/network->最后cd /etc/network/if-up.d

建立一个文件 iwl-no-blink

$sudo gedit iwl-no-blink

编辑里面的内容为

代码:

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

保存

设置权限

$sudo chmod 755 /etc/network/if-up.d/iwl-no-blink

最后,从启acpid
sudo /etc/init.d/acpid restart
The root of bioengineering is the desire to control the organic long enough to improve it. Domesticated plants and animals are examples of technos -- logic applied to life.
头像
yus253
帖子: 389
注册时间: 2009-05-31 20:52
联系:

Re: 无线指示灯不亮的问题

#4

帖子 yus253 » 2009-11-06 16:37

在9.04下很完美,在KARMIC KOALA下,会不时闪烁~ :em06
The root of bioengineering is the desire to control the organic long enough to improve it. Domesticated plants and animals are examples of technos -- logic applied to life.
jinsir
帖子: 368
注册时间: 2009-02-21 20:58

Re: 无线指示灯不亮的问题

#5

帖子 jinsir » 2009-11-27 13:08

3楼兄弟请一步一步写清楚,因为俺不会命令输入。
谢谢!
回复