预装 Win8(12.10)的 Ubuntu 无法识别 WIFI

预装 Win8(12.10)的 Ubuntu 无法识别 WIFI

我最近在计算机上安装了 12.04(目前正在升级到 12.10),这样我就可以通过可启动闪存驱动器双启动 win8。经过多次挫折,我终于让 ubuntu 工作了,但它无法识别无线驱动程序。当我输入 iwconfig 时,它显示我没有 etho 和 lo 连接。但是我可以通过有线连接连接到互联网。

因此,我尝试通过 synaptic 安装 bcm,但没有任何效果。我卸载并重新安装……仍然没有任何效果。我尝试在设置中使用“附加驱动程序”,但无济于事。那么,我该怎么办?

答案1

安装 ndiswrapper

sudo aptitude install ndiswrapper-common ndiswrapper-modules-1.9 ndiswrapper-utils-1.9

安装 WiFi 驱动程序(从 Windows):

sudo ndiswrapper -i yourdriver.inf

检查驱动程序是否正常工作:

sudo ndiswrapper -l

加载模块:

sudo depmod -a

sudo modprobe ndiswrapper

配置 modprobe 以便它加载 ndiswrapper:

sudo ndiswrapper -m

编辑模块以在末尾添加 ndiswrapper:

sudo gedit /etc/modules

记得在最后添加 ndiswrapper。

希望您现在可以恢复 WiFi!

相关内容