| TCP/IP网络并不关心无线网络中计算机的操作系统是什么,它仅仅负责从一个计算机的端口接受和发送比特和字节。只要为无线网络适配器找到合适的驱动程序,所有计算机(unix /Linux , Mac OS /windows)都可以使用无线网络。
目前无线网卡芯片市场主要由Intel,Broadcom,Atheros这三家统治,Acer-4520使用的就是Atheros无线网卡,无线标准为 802.11 b/g。该网卡实际上使用了Atheros 802.11b/g芯片(Vendor ID: 168c; Device ID: 0024)。Open Solaris中Atheros无线网卡驱动程序是ath。
最近在opensolaris.org网站上发布了能支持这款芯片的 ath驱动程序的0.6版本。不过 0.6版本不支持802.11n协议。
该无线网卡的驱动不包含在Solaris标准安装盘中,但是可以从Open Solaris笔记本社区(http://opensolaris.org/os/community/laptop/downloads/ )下载。
OpenSolaris上支持的无线网卡芯片包括:
Atheros AR5210/AR5211/AR5212无线网卡
Broadcom 43xx
Cisco Aironet 340/350 系列802.11b无线网卡
Intersil PrismII 802.11b
Intel PRO/Wireless 2100 (迅驰BMiniPCI)
Intel PRO/Wireless 2200/2915 (迅驰AG MiniPCI)
Intel PRO/Wireless 3945 (迅驰ABG MiniPCI)
Ralink RT2500
Realtek RTL8180L 802.11b
ZyDAS ZD1211
Atheros AR5210/AR5211/AR5212无线网卡 目前最新的版本是0.6,文件名: ath-0.6-pkg.tar.gz。
1、安装驱动
下载安装过程如下:
以下是引用片段: #wget http://opensolaris.org/os/community/laptop/downloads/ath-0.6-pkg.tar.gz #guzip # pkgadd -d ./SUNWatheros SUNWatheros |

无线网卡安装成功界面
2、连接无线网络
以下是引用片段: #ifconfig ath0 plumb #ifconfig ath0 dhcp |
上面的“ifconfig ath0 dhcp”为连接当前可用的未加密的无线网络,并自动获取IP地址。如果要连接加密的无线网络,需要使用OpenSolaris提供的wificonfig工具。
下载安装:
以下是引用片段: # wget http://www.opensolaris.org/os/community/laptop/downloads/wificonfig-0.2-bin.tar.gz # gzip -dc wificonfig-0.2-bin.tar.gz | tar xvf - # cp wificonfig /usr/bin | 查看当前可用无线网络:
通过如下命令可以查看当前环境可用的无线网络。
以下是引用片段: # wificonfig -i ath0 scan | 自动连接到没有加密的无线网络,使用命令:
以下是引用片段: # wificonfig -i ath0 autoconf |
连接到加密的无线网络,使用命令:
以下是引用片段: # wificonfig -i ath0 createprofile essid=mywifi encryption=WEP wepkey1=12345 # wificonfig -i ath0 connect mywifi | 其中分别包含了网络名字(essid),加密类型(wep),WEP Key(加密密钥)
查看连接到加密的无线网络的状态,使用命令:
以下是引用片段: # wificonfig -i ath0 showstatus |
|