无法从Ubuntu 14.04连接到wifi! Realtek问题!

我从Windows XP改为Ubuntu 14.04! 我的上网本已有7年历史,我无法连接到WiFi! 这是我第一次使用Ubuntu所以请准确,如果你想帮助我!

我做了这个lspci ,结果是:

 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02) 

lsusb结果是:

 Bus 001 Device 004: ID 05e1:0100 Syntek Semiconductor Co., Ltd 802.11g + Bluetooth Wireless Adapter 

sudo lshw -c network的结果是:

 *-network description: Ethernet interface product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller vendor: Realtek Semiconductor Co., Ltd. physical id: 0 bus info: pci@0000:02:00.0 logical name: eth0 version: 02 serial: 00:e0:4c:50:a7:ba size: 10Mbit/s capacity: 100Mbit/s width: 64 bits clock: 33MHz capabilities: pm msi pciexpress msix vpd bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half latency=0 link=no multicast=yes port=MII speed=10Mbit/s resources: irq:25 ioport:2000(size=256) memory:d0100000-d0100fff memory:d0000000-d000ffff memory:d0120000-d013ffff 

没有找到互联网。

问题

**这是为Ubuntu 13.10及更高版本重新打包Realtek自己的8192CU USB WiFi驱动程序

在安装此驱动程序生成器之前,请检查realteck中wifi适配器中的错误。

已知双天线不能很好地工作。 这可能是Realtek驱动程序问题。

安装:只要您是管理员,就可以在终端(Ctl + Alt + T)中复制和粘贴这些命令。

确保先拥有包裹。

 sudo apt-get update && sudo apt-get install git linux-headers-generic build-essential dkms 

然后克隆git。

 git clone https://github.com/pvaret/rtl8192cu-fixes.git 

然后将其设置为DKMS模块:

 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/ 

然后重启。

 sudo reboot