PDA

View Full Version : modprobe ndiswrapper


wiscados
24th August 2007, 12:35 PM
Hi, I just got NDISWrapper installed(thanks to some great prople on this forum (http://forums.fedoraforum.org/showthread.php?t=163955) ), and now I need to install it.

If I type ndiswrapper -l it says: mrv8335 : driver installed
device (11AB:1FAA) presentBut when I type the command: modprobe ndiswrapper it says there is no ndiswrapper.

What am I doing wrong?
Is there some special thing about either modprobe or ndiswrapper that I don't know about?

Dangermouse
24th August 2007, 12:40 PM
modprobe as far as i know can only run in a su - terminal
su -
modprobe ndiswrapper

wiscados
24th August 2007, 01:26 PM

yeah, I did that. If I don't su - it doesn't even find ndiswrapper

ppesci
24th August 2007, 02:59 PM
May be ndiswrapper had problems to install as module.

As root type:

dmesg

and see in the last lines if there are some message

HTH

wiscados
26th August 2007, 11:41 AM
I just figured out why I got my own computer...

I have the dmsg here taken just after I "modprobe ndiswrapper"'d:
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM ver 1.8
Bluetooth: HIDP (Human Interface Emulation) ver 1.2
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
eth1: link down
ADDRCONF(NETDEV_UP): eth1: link is not ready
ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 16
[drm] Initialized drm 1.1.0 20060810
[drm] Initialized radeon 1.25.0 20060524 on minor 0
agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0.
agpgart: Putting AGP V2 device at 0000:00:00.0 into 1x mode
agpgart: Putting AGP V2 device at 0000:01:00.0 into 1x mode
[drm] Setting GART location based on new memory map
[drm] Loading R300 Microcode
[drm] writeback test succeeded in 1 usecs
APIC error on CPU0: 00(40)
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM ver 1.8
Bluetooth: HIDP (Human Interface Emulation) ver 1.2
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
eth1: link down
ADDRCONF(NETDEV_UP): eth1: link is not ready
ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 16
[drm] Initialized drm 1.1.0 20060810
[drm] Initialized radeon 1.25.0 20060524 on minor 0
agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0.
agpgart: Putting AGP V2 device at 0000:00:00.0 into 1x mode
agpgart: Putting AGP V2 device at 0000:01:00.0 into 1x mode
[drm] Setting GART location based on new memory map
[drm] Loading R300 Microcode
[drm] writeback test succeeded in 1 usecs
APIC error on CPU0: 00(40)

Hope this wil give some answers..

ppesci
26th August 2007, 08:40 PM
No ndiswrapper messages :(

Try this (as root):

rmmod ndiswrapper

and then

modprobe ndiswrapper

and put last lines here of:

dmesg

wiscados
29th August 2007, 07:28 PM
I tried rmmod, didn't work, then I tried depmod it worked but I don't really know what it did...

ppesci
29th August 2007, 11:22 PM
depmod is depluy module, does almost the same thing than modprobe.

If rmmnod failed, then ndiswrapper is not installed as a module because there is an error maybe.

Restart your computer, and use

modprobe ndiswrapper

and then type

dmesg

or if not ndiswrapper message appear, use the command:

tail /var/log/messages -n20

and see if there are a messages.

HTH