我尝试了有关如何修复“未找到 ndiswrapper”的所有修复程序 ?
在答案 3 修复建议 #2 上:当sudo make我得到
Cannot find kernel build files in /usr/src/linux-headers-3.7.0-7-generic
Please give the path to kernel build directory with
the KBUILD=<path> argument to make
Run Code Online (Sandbox Code Playgroud)
我也尝试卸载所有 ndiswrapper 文件并重新安装。我对 Ubuntu 还很陌生。我正在尝试让我的 Netgear WN311T 正常工作。
sudo modprobe ndiswrapper 给我
WARNING: All config files need .conf: /etc/modprobe.d/blacklist,
it will be ignored in a future release.
FATAL: Module ndiswrapper not found.
Run Code Online (Sandbox Code Playgroud)
你的问题是“make”失败,因为你没有安装linux内核头文件。
安装它们:
sudo apt-get install linux-headers-3.7.0-7-generic
Run Code Online (Sandbox Code Playgroud)