DLink DWA 131 无线适配器在 ubuntu 15.10 上无法工作

DLink DWA 131 无线适配器在 ubuntu 15.10 上无法工作

我最近购买了 DWA 131 适配器。它在 ubuntu 上无法使用。我升级到 15.10 希望它能正常工作...但没有链接...

请帮忙。

lsusb 输出是:

Bus 001 Device 002: ID 2001:3319 D-Link Corp.

dmesg 输出是:

[  691.728363] usb 1-3: new high-speed USB device number 2 using xhci_hcd
[  691.856817] usb 1-3: New USB device found, idVendor=2001, idProduct=3319
[  691.856822] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  691.856825] usb 1-3: Product: Wireless N Nano USB Adapter
[  691.856827] usb 1-3: Manufacturer: Realtek
[  691.856829] usb 1-3: SerialNumber: 00e04c000001

答案1

我使用 DKMS 将此驱动程序打包到 PPA 中。它可以通过以下方式安装:

sudo add-apt-repository ppa:hanipouspilot/rtlwifi
sudo apt-get update
sudo apt-get install rtl8192eu-dkms

我不支持 4.8+ 内核的此驱动程序。对于使用 4.8+ 内核的 Ubuntu 用户,我建议使用 DKMS 从 github 安装它

sudo apt-get install git dkms
git clone https://github.com/Mange/rtl8192eu-linux-driver.git
sudo dkms add ./rtl8192eu-linux-driver
sudo dkms install rtl8192eu/1.0

答案2

尝试这个 -https://github.com/Mange/rtl8192eu-linux-driver

sudo apt-get install git build-essential
git clone https://github.com/Mange/rtl8192eu-linux-driver.git
cd rtl8192eu-linux-driver
sudo make
sudo make install

相关内容