安装 wifi 适配器驱动程序时出错

安装 wifi 适配器驱动程序时出错

刚刚在我的 Raspberry Pi 上安装了 Ubuntu Server Standardhttps://ubuntu-pi-flavour-maker.org/

我有一个 Canakit Wifi 适配器,正在尝试安装驱动程序:http://www.canakit.com/ckxw1000

我已经下载了该文件并对其进行了解压缩,但是运行 make 时,输出如下:

make -C tools
make[1]: Entering directory '/home/ubuntu/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/tools'
gcc -g bin2h.c -o bin2h
make[1]: Leaving directory '/home/ubuntu/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/tools'
/home/ubuntu/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/tools/bin2h
cp -f os/linux/Makefile.6 /home/ubuntu/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/os/linux/Makefile
make -C /lib/modules/4.1.19-v7+/build     SUBDIRS=/home/ubuntu/DPO_RT5572_LinuxSTA_2.6.1.3_20121022/os/linux modules
make[1]: *** /lib/modules/4.1.19-v7+/build: No such file or directory.  Stop.
Makefile:388: recipe for target 'LINUX' failed
make: *** [LINUX] Error 2

答案1

内核 4.6 及更新版本不兼容,因为网络堆栈已被修改,请回滚到 4.3 或 4.5 版本,然后 make 将可以工作并且驱动程序也可以正常工作。

相关内容