在ubuntu中使用tp-link wn321G无线网卡

tp-link
在ubuntu feisty上使用这个无线网卡后,可以找到2个无线网卡,但就是无法连接无线路由器上。但我在windows下发现可以正常使用,说明不是信号的问题。
一番搜索之后,发现在这儿有相关的线索:
http://ubuntuforums.org/showthread.php?p=2399957
http://ubuntuforums.org/showthread.php?t=400236&page=8&highlight=rt73

具体的安装办法如下:
1. 下载、编译安装必须的软件包

wget http://rt2x00.serialmonkey.com/rt73-cvs-daily.tar.gz
tar -xvzf rt73-cvs-daily.tar.gz
sudo aptitude install build-essential linux-headers-`uname -r`
cd rt73-cvs-yyyymmddhh/Module
sudo make
sudo make install

2. 修复module冲突

sudo modprobe -r rt73usb
sudo modprobe -r rt2570
sudo modprobe -r rt2500usb
sudo modprobe -r rt2x00lib

编辑blacklist文件:

sudo nano /etc/modprobe.d/blacklist

加入:

# Blacklist rt73usb, as it is a non-functional beta module which conflicts with the working rt73 module.
blacklist rt73usb
# Blacklist rt2570, as it causes conflicts with rt73
blacklist rt2570
# Other modules that break rt73
blacklist rt2500usb
blacklist rt2x00lib

安装模块
sudo modprobe -v rt73

3. 配置网络接口
sudo nano /etc/network/interface
加入:

auto rausb0
iface rausb0 inet dhcp

pre-up ifconfig rausb0 up
pre-up iwconfig rausb0 essid “YOUR_ESSID”


已发布

分类

来自

标签:

评论

《 “在ubuntu中使用tp-link wn321G无线网卡” 》 有 8 条评论

  1. wlx 的头像
    wlx

    的确是beta版本的mod,使用后导致CPU使用率最低都在30%以上,load参数也比较大。
    期待在以后的版本有较大的性能提升。
    不过,这样至少解决了能用的问题。

  2. jean 的头像
    jean

    我现在也在搞这个网卡,郁闷死了,怎么都装不上去,回去拿你这个说明试试,希望可以装上去。
    这个网卡你在别的linux系统中装过吗?

  3. wlx 的头像
    wlx

    To jean:
    我现在只用ubuntu,没在别的发行版里试验过
    但应该是不区分发行版的,只不过安装辅助软件时不同发行版可能方便程度不同。

  4. wlx 的头像
    wlx

    使用这个mod后,机器上geforce 440显卡无法使用nvidia官方的驱动,只能使用开源的nv驱动。
    否则gdm启动后会灰屏。
    晕,导致beryl无法使用。

  5. wlx 的头像
    wlx

    和nvidia驱动冲突的问题在今天的更新中得到了解决。

  6. niyue 的头像

    Hi, I followed your three steps to the end, could you tell me how to use the configured wireless card? I am trying to connect to a WPA-Personal access point. And the gnome network manager doesn’t have WPA entry but just WEP entry which can be used. Or is there some command line interface to use the wireless card? Thanks.

  7. wlx 的头像
    wlx

    To niyue:
    1. 配置此无线网卡需要在/etc/network/interface中设置,而且和gnome-network-manager有冲突,必须要卸载掉gnome-network-manager:
    sudo aptitude purge network-manager
    2. 我的ap没有设置wpa,因此无法验证,但在这个howto里有设置:
    http://ubuntuforums.org/showthread.php?t=400236&highlight=rt73

    auto rausb0
    iface rausb0 inet dhcp
    pre-up ifconfig rausb0 up
    pre-up iwconfig rausb0 essid “YOUR_ESSID”
    pre-up iwconfig rausb0 mode managed
    pre-up iwpriv rausb0 set AuthMode=WPAPSK
    pre-up iwpriv rausb0 set EncrypType=AES
    pre-up iwpriv rausb0 set WPAPSK=”YOUR_WPA_PSK_KEY”
    pre-up iwpriv rausb0 set SSID=”YOUR_SSID”

  8. wlx 的头像
    wlx

    在ubuntu gutsy里此网卡可以完美地识别。

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注