我按照该帖子上的说明进行操作,但我的加密狗似乎不起作用:Tp-Link WN821N(2357:0107)无法与 Ubuntu 16.04 配合使用
安装 RTL8192EU 驱动程序后,它最终检测到加密狗并iwconfig
在控制台中输入时显示一些信息(见下文)。但即便如此,加密狗也没有显示在其他任何地方,我无法搜索无线网络。
anthonidas@AnthoUnixSurface:~$ lsusb
Bus 001 Device 002: ID 2357:0107
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub
Bus 002 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
anthonidas@AnthoUnixSurface:~$ iwconfig
ens33 no wireless extensions.
lo no wireless extensions.
enx98ded013b4aa unassociated Nickname:"<WIFI@REALTEK>"
Mode:Managed Frequency=2.412 GHz Access Point: Not-Associated
Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Power Management:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
anthonidas@AnthoUnixSurface:~$ uname -a
Linux AnthoUnixSurface 4.4.0-62-generic #83-Ubuntu SMP Wed Jan 18 14:10:15 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
有人知道我做错了什么吗?TP-Link WN821N 与 Linux 不兼容吗?
编辑 这是 dkms status 的输出:
anthonidas@AnthoUnixSurface:~$ dkms status
rtl8192eu, 4.4, 4.4.0-62-generic, x86_64: installed
编辑2 开始了:
anthonidas@AnthoUnixSurface:~$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
答案1
好的,我最终在 Kali-Linux 论坛找到了解决方案,它也适用于 Ubuntu。
我首先做的是卸载你的驱动程序并下载那个:https://github.com/Mange/rtl8192eu-linux-driver,但实际上我没有检查它是否相同......所以我很确定它也可以与你的驱动程序一起使用。
反正最终的解决方案是将 CU-Driver 列入黑名单!!
因此,对于遇到同样问题的人,请执行以下操作:
1. Download the rtl8192eu driver from the above link or from pilot's repo
2. Install it with make and sudo make install
3. Blacklist the rtl8192cu driver
in terminal type: sudo nano /etc/modprobe.d/blacklist.conf
add a new line with that --> blacklist rtl8192cu
save the file
4. Reboot and AFTERWARDS plug your dongle in
5. The post in kali-linux's forum said, that for that guy it hadn't worked on the first try. In that case he suggested just to repeat the installation several times.
我没有占任何学分,我只是把 NL2016 的答案复制到这里,因为它对我有帮助,也可能对其他人有帮助...如果你想阅读他的讨论,这里是:https://forums.kali.org/showthread.php?34548-TP-Link-TL-WN821N-Wifi-Adaptor-no-interface&p=67560&viewfull=1#post67560