我从 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
未找到互联网。
答案1
**这是 Realtek 自己的 8192CU USB WiFi 驱动程序的重新包装,适用于 Ubuntu 13.10 及更高版本
在安装此驱动程序生成器之前,请检查 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
然后将其设置为知识管理系统模块:
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