尝试在Arch上使用ndis包装器时,我得到了以下错误(这实际上是命令ndiswrapper -l的结果):
modinfo: ERROR: Module ndiswrapper not found.
module version is too old!
utils version: '1.9', utils version needed by module: '0'
module details:
modinfo: ERROR: Module ndiswrapper not found.
You may need to upgrade driver and/or utils to latest versions available at
http://ndiswrapper.sourceforge.net但是,我从社区存储库中安装了ndiswrapper-dkms。我该怎么解决呢?我在内核4.4.1-2上运行。
编辑:我也试图从源代码中编译ndiswrapper,但没有成功。我得到的错误如下:
ndiswrapper-1.59/driver/crt.c:470:2: error: implicit declaration of
function ‘net_srandom’ [-Werror=implicit-function-declaration]
net_srandom(seed);
^发布于 2016-02-24 10:37:16
您需要应用这个pach:ndiswrapper-patched-3.14
运行以下命令:
git clone https://github.com/Schwartz/ndiswrapper-patched-3.14.git
cd ndiswrapper-patched-3.14
makehttps://unix.stackexchange.com/questions/265280
复制相似问题