我正在使用 Ubuntu 13.04 3.8.0-27-generic,但无法使用 TL-725N nano 无线适配器。
lsusb:
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 003 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
Bus 003 Device 005: ID 0bda:8179 Realtek Semiconductor Corp.
Bus 003 Device 004: ID 05e3:0727 Genesys Logic, Inc. microSD Reader/Writer
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 07d1:3300 D-Link System DWA-130 802.11n Wireless N Adapter(rev.E) [Realtek RTL8191SU]
Bus 001 Device 004: ID 2232:1035
Bus 002 Device 003: ID 8087:07da Intel Corp.
我安装了这个:https://code.google.com/p/realtek-8188cus-wireless-drivers-3444749-ubuntu-1304/ 但即使重启后也没有发生任何事情。我仍然无法在网络管理器中看到该设备。
sudo modprobe r8712u 什么也没做,以下是 iwconfig 的结果:
wlan1 IEEE 802.11abgn ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=15 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:off
eth0 no wireless extensions.
lo no wireless extensions.
wlan0 IEEE 802.11bg ESSID:"gagman" Nickname:"rtl_wifi"
Mode:Managed Frequency:2.462 GHz Access Point: 00:13:A3:0A:B8:0D
Bit Rate:54 Mb/s Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Power Management:off
Link Quality=89/100 Signal level=71/100 Noise level=0/100
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
消息 | grep r87
[ 12.628932] r8712u: module is from the staging directory, the quality is unknown, you have been warned.
[ 12.630039] r8712u: Staging version
[ 12.630049] r8712u: register rtl8712_netdev_ops to netdev_ops
[ 12.630050] r8712u: USB_SPEED_HIGH with 4 endpoints
[ 12.630511] r8712u: Boot from EFUSE: Autoload OK
[ 13.046262] r8712u: CustomerID = 0x0006
[ 13.046264] r8712u: MAC Address from efuse = c8:be:19:de:b6:96
[ 13.046264] r8712u: Loading firmware from "rtlwifi/rtl8712u.bin"
[ 13.046320] usbcore: registered new interface driver r8712u
[ 17.937068] r8712u: 1 RCR=0x153f00e
[ 17.937822] r8712u: 2 RCR=0x553f00e
[ 40.011329] r8712u: wpa_set_encryption, crypt.alg = WEP
谢谢
答案1
我下载并安装了该驱动程序(来自 zip 文件):https://github.com/lwfinger/rtl8188eu 而且它确实有效。
答案2
您的设备的正确驱动程序不是您安装的驱动程序,而是 r8712u:
modinfo r8712u | grep 3300
alias: usb:v07D1p3300d*dc*dsc*dp*ic*isc*ip*in*
它在 13.04 中默认包含。请尝试加载它:
sudo modprobe r8712u
有任何错误或警告吗?是否创建了无线接口?
iwconfig
如果没有,请在这里寻找线索:
dmesg | grep r87
如果简单加载就能让你的设备工作,请添加要自动加载的模块:
sudo -i
echo r8712u >> /etc/modules
exit