在 Ubuntu 上安装 RT5370 的驱动程序

在 Ubuntu 上安装 RT5370 的驱动程序

我尝试安装无线适配器 Ralink RT5370 的驱动程序。我在网站上下载http://www.mediatek.com/_en/07_downloads/01_windows.php?sn=501Linux 的驱动程序。

然后我修改了:

  • os/linux/config.mk 'HAS_WPA_SUPPLICANT=y', 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y' and 'WFLAGS += -DCONFIG_STA_SUPPORT' (removed "-DDBG" from the line)

  • 在 Makefile 中

    ifeq ($(CHIPSET),)  
    CHIPSET = 5370  
    endif     (instead of 5572 5370 etc.)
    

然后我做了:

$sudo make && sudo make install
$sudo modprobe rt5572sta

+reboot 但不起作用。rt5572sta 是唯一提出的模块modprobe

我现在是 12.04

$lsusb
...
... Ralink Technology Corp. RT5370 Wireless Adapter
...

$lsmod
...
rt5572sta 739308 0 
...

$uname -r -m 
3.2.0-23-generic-pae i686

有人知道该怎么做吗?谢谢!

答案1

最有可能的是,您尝试使用错误的驱动程序。发出以下命令:

  modinfo rt2800usb | grep 5370

看看输出是否是:

  alias:          usb:v148Fp5370d*dc*dsc*dp*ic*isc*ip*in*

或者非常类似的东西,包含字符串

  v148Fp5370

如果是这种情况,则说明您使用了错误的驱动程序。请尝试

  sudo apt-get install linux-firmware-nonfree
  sudo rmmod rt5572sta
  sudo modprobe rt2800usb

看看现在是否有效。

答案2

请注意,今天在 debian stretch(新安装)中,我看到了我的 wifi 路由器,但它无法连接。它有 rt2800usb 模块 modprobed。

[10706.100166] wlx7cdd9049493a: authenticated
[10722.074791] wlx7cdd9049493a: authenticate with 50:a7:2b:58:8a:29
[10722.101567] wlx7cdd9049493a: send auth to 50:a7:2b:58:8a:29 (try 1/3)
[10722.103009] wlx7cdd9049493a: authenticated
[10730.714846] IPv6: ADDRCONF(NETDEV_UP): wlx7cdd9049493a: link is not ready
[10730.906698] IPv6: ADDRCONF(NETDEV_UP): wlx7cdd9049493a: link is not ready

相关内容