I'm trying to use ndiswrapper on a Slackware 12 (I think) box, but I'm running into a problem with modprobe. Everything I find online says that it should be working, but for some unknown reason it isn't. Here's what I've done so far:
- Installed ndiswrapper (latest tarball, make, make install)
- Ran
ndiswrapper -ion the WinXP driver for my USB wireless card - Ran
ndiswrapper -lwhich tells me the driver is present and the device is present (lsusb also confirms the device is present) - Ran
ndiswrapper -mwhich put an alias for wlan0 in /etc/modprobe.d/ndiswrapper.conf - Ran
depmod -a - Ran
modprobe ndiswrapperwhich tells me "FATAL: module ndiswrapper not found" - Ran
modprobe -lwhich shows no listing for ndiswrapper
I even tossed in a reboot or two while trying various combinations of the above, still nothing. So naturally ifconfig wlan0 up isn't working because the device isn't being created, presumably because the module isn't loading the driver.
Does anybody have any suggestions? Everything points to the notion that this should work fine, but modprobe just isn't able to find what it needs. Have I missed an important step?
makeormake install? It didn't install the kernel module properly. Make sure you have a copy of the Linux kernel source in/usr/src/. – Patches Mar 6 '11 at 0:33cdto/lib/modules/$(uname -r)and see if amiscdirectory exists with andiswrapper.kofile inside. It's very strange that the module install would fail without an error frommake install. – Patches Mar 6 '11 at 1:35build,kernel,source, and a bunch ofmodules.*directories (buildandsourcejust link to the kernel source), but nothing withmiscin the name or withndiswrapper.kocontained within. I do seendiswrapper.kobuilt in the source tree for ndiswrapper, though. Can I manually install it? – David Mar 6 '11 at 11:21miscdirectory and copied the compiledndiswrapper.kothere, thendepmod -aandmodprobe ndiswrapperloaded the module. Nowiwconfigseeswlan0. Don't know if it's working end-to-end yet, but this is definitely a step in the right direction. Thanks! – David Mar 6 '11 at 12:34