Edimax EW-7811Un wifi适配器无法在Ubuntu 14.04 LTS上运行

我已经安装了Ubuntu 14.04 LTS 64-Bit并且有一个Edimax EW-7811Un wifi适配器。 我已经厌倦了让它上class但没有运气。

当我运行lsusb命令时,我得到:

Bus 001 Device 005: ID 7392:7811 Edimax Technology Co., Ltd EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS] 

iwconfig显示没有正在读取或连接的内容:

 eth0 no wireless extensions. lo no wireless extensions. 

我已经厌倦了许多论坛和教程,但无法让它工作,不知道我做错了什么。

有人可以给出明确的一步一步的方法来实现这个目的吗?

uname -r :(内核版)

 3.16.0-34-generic 

据报道这有效:

 sudo apt-get install linux-headers-generic build-essential dkms git clone https://github.com/pvaret/rtl8192cu-fixes.git sudo dkms add ./rtl8192cu-fixes sudo dkms install 8192cu/1.10 sudo depmod -a sudo cp ./rtl8192cu-fixes/blacklist-native-rtl8192.conf /etc/modprobe.d/ 

重启

( 来源 )

Ubuntu为LTS版本提供了更新的内核(和X Windows),称为LTS Enablement Stack 。 我在我的14.04(Trusty)系统上安装了最新的内核,在撰写本文时,它是Xenial(16.04)的内核。 较新的内核具有较新的驱动程序和固件。

 sudo apt-get install --install-recommends linux-generic-lts-xenial 

然后重新启动以升级到Xenial内核。 在我的系统上,Edimax适配器后来工作正常。