Tag Archive for 'wireless'
系统: ubuntu dapper 6.06
机器: Acer Aspire 3600
和我一样机器的朋友请先参考网络驱动的安装,由于我的内核还没有升级到2.6.17之后,所有中间的这部分要求我没有重新执行(现在的驱动是去年安装的)。
安装完成后,下载 wifi-radar这个软件,其实就是无线网络自动搜索和连接的小程序
如果使用 ubuntu/debian 可以直接使用 apt-get 安装
1 | $ sudo apt-get install wifi-radar |
如果没有让 wifi-radar 守护进程自动装载,请使用
1 | $ sudo /etc/init.d/wifi-radar start |
运行,然后启动 wifi-radar
1 | $ sudo wifi-radar |
开始选择你可以连接的无线节点吧!
如果wifi-radar工作不正常,使用下面方法重新加载一次 bcm43xx 模块就行了
1 2 | $ sudo rmmod bcm43xx $ sudo modprobe bcm43xx |
现在,不管怎么样都能连上啦,适合常常变换地点使用无线网络的朋友。
或许有的人认为在ubuntulinux上重新连接无线网络是一件很困难的事情,其实却是很简单的。由于无线网卡大多都是 pcmcia 设备,所以在重新激活网络前应该先重新激活一下 pcmica 设备,让内核模块重新加载驱动程序,不过有些通过模拟之类在实现无线网络连接的方法就不知道该怎么做了。
先重新激活 pcmcia
1 | $ sudo /etc/init.d/pcmciautils restart |
再重新激活 网络连接
1 | $sudo /etc/init.d/networking restart |
什么时候需要重新激活无线网络?
在重新配置了无线连接或者无线网络中断之后,注意,我使用的ubuntu版本为 6.06

在ubuntulinux无线网卡的设置是很简单的,但是如果你不小心丢失了你的设置怎么办,或者突然无线网络不能使用了?我就是使用下面的网络配置来重新启动我的无线网络的。注意,我们使用我的“有线”网卡。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # auto dsl-provider # iface dsl-provider inet ppp # provider dsl-provider # added by pppoeconf auto eth1 iface eth1 inet static address 192.168.0.3 netmask 255.255.255.0 gateway 192.168.0.1 wireless-essid gentoo # wireless-rate auto # wireless-mode Managed # wireless-ap 00:15:E9:0A:B0:7C # wireless-channel 1 wireless-key s:wep_passwd iface eth0 inet static address 192.168.0.119 netmask 255.255.255.0 gateway 192.168.0.1 |

Recent Comments