如何在ubuntu 12.04中为Digisol DG-WN3150Nu安装无线适配器驱动程序?

我正在使用HP Pavilion 15-n011TU,我遇到无线局域网驱动程序问题。 不幸的是,根据此链接 ,设备没有Ubuntu驱动程序。 所以我购买了一个USB wifi加密狗(Digisol DG-WN3150Nu)。 默认情况下,它不会在Ubuntu 12.04中检测到。 有关如何安装驱动程序的任何想法? 并使用modprobe启用它。

lsusb返回:

 Bus 001 Device 002: ID 8087:8000 Intel Corp. Bus 002 Device 002: ID 0461:4e22 Primax Electronics, Ltd Bus 002 Device 003: ID 05c8:0361 Cheng Uei Precision Industry Co., Ltd (Foxlink) Bus 002 Device 005: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Bus 002 Device 004: ID 0e8d:763e MediaTek Inc. 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:0003 Linux Foundation 3.0 root hub 

我需要默认禁用MediaTek适配器并在启动时加载Digisol DG-WN3150Nu,谢谢。

您的USB无线设备可与较新的Ubuntu版本中的驱动程序rtl8192cu配合使用。 检查12.04中的驱动程序是否覆盖了您的设备:

 sudo modprobe rtl8192cu 

你的无线现在工作吗? 检查驱动程序模式:

 modinfo rtl8192cu | grep 8176 

如果安装的驱动程序未覆盖您的设备,请安装较新的驱动程序版本。 通过以太网临时工作的互联网连接,连接或任何可能的方式:

 sudo apt-get install git 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/ 

重新启动并告诉我们它是否正常工作。