我刚刚在电脑上安装了 Ubuntu 系统,但它无法与我的 TrendNet TEW 664-UB 配合使用(该设备在 Windows 7 中运行良好)。起初我以为这是一个驱动程序问题,所以我尝试了ndiswrapper
,但是,当我在终端中输入时,lsusb
它没有显示 Trendnet USB,只显示连接到它的键盘和鼠标。那么我该怎么做才能让我的无线适配器在 Ubuntu 上运行?
答案1
rt8192cu
您可以使用Larry Finger 创建的新驱动程序使无线网卡工作:
sudo apt-get install build-essential linux-headers-generic git
git clone https://github.com/lwfinger/rtl8192du.git
cd rtl8192du
make
sudo make install
sudo modprobe 8192du
每次升级内核时,请再次运行以下命令:
cd rtl8192du
make
sudo make install
sudo modprobe 8192du
来源:Ubuntu 论坛