Page 119 of 121 FirstFirst ... 1969109117118119120121 LastLast
Results 1,181 to 1,190 of 1210

Thread: Comprehensive ndiswrapper troubleshooting guide

  1. #1181
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Comprehensive ndiswrapper troubleshooting guide

    mojo risin: you don't have any ndiswrapper module installed for the 3.2 kernel. I'm not sure why that is, but hopefully reinstalling the ndiswrapper packages would fix the problem. Please try:
    Code:
    sudo apt-get remove --purge ndiswrapper-common ndiswrapper-utils-1.9
    sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9
    Then run "sudo updatedb" and after that finishes, again run:

    Code:
    locate ndiswrapper.ko
    This time, with any luck, it will show an ndiswrapper module installed under the 3.2 kernel.

    Of course, all of the above assumes that you are using the normal Ubuntu kernel that ships with Ubuntu 12.04 (or is provided by Ubuntu updates). You didn't compile the kernel yourself or install it from another source, did you?

  2. #1182
    Join Date
    Jul 2010
    Location
    HH
    Beans
    59

    Re: Comprehensive ndiswrapper troubleshooting guide

    no I didnt compile the Kernel myself-- I am not as sophisticated as that yet-- Am I right in having to do that under the 3.0 Kernel and then it would install it for the 3.2 one as well? since I won't have internet available for the 3.2 Kernel.

    Code:
    morri@schrabbelkiste:~$ locate ndiswrapper.ko
    /lib/modules/2.6.38-10-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    /lib/modules/2.6.38-11-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    /lib/modules/2.6.38-8-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    /lib/modules/3.0.0-17-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    did this under the 3.0 Kernel and I still don't get it for the 3.2 Kernel.
    Last edited by mojo risin; July 2nd, 2012 at 07:46 AM.

  3. #1183
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Comprehensive ndiswrapper troubleshooting guide

    mojo risin: if you install the ndiswrapper-common and ndiswrapper-utils-1.9 packages they should install the ndiswrapper module on your system for all kernels. But apparently that is not happening in your case and I'm not sure why.

    It may work to build the module manually from source using Ubuntu's version of the source code, which should compile without issue. To do that, first boot into a kernel where you have Internet access and install the packages you will need:

    Code:
    sudo apt-get install ndiswrapper-source ndiswrapper-dkms
    Then boot into the 3.2 kernel and try compiling ndiswrapper there using the dkms service:

    Code:
    sudo dkms build -m ndiswrapper -v 1.57
    sudo dkms install -m ndiswrapper -v 1.57
    If you run into errors from any of these commands, please post all output. Otherwise, when they are done, try loading the ndiswrapper module with:
    Code:
    sudo modprobe ndiswrapper

  4. #1184
    Join Date
    Jul 2010
    Location
    HH
    Beans
    59

    Re: Comprehensive ndiswrapper troubleshooting guide

    I did the first step rebooted and it had a connection.

    Code:
    morri@schrabbelkiste:~$ dmesg | grep -i fwlan[   32.505456] ndiswrapper: driver fwlan (,Texas Instruments) loaded
    [   38.720302] wlan0: ethernet device 00:1f:3f:05:1e:bc using NDIS driver: fwlan, version: 0x2000c6f, NDIS version: 0x501, vendor: 'AVM FRITZ!WLAN USB Stick', 057C:6201.F.conf
    morri@schrabbelkiste:~$ dmesg | grep -i fritz[   30.706369] AVM Fritz PCI driver Rev. 2.1
    [   30.706487] mISDN: found adapter Fritz!Card PCI v2 at 0000:00:0a.0
    [   30.706506] AVM.1: AVM Fritz!CARD PCIv2 config irq:5 base:0xB000
    [   32.596356] hisax_fcpcipnp: Fritz!Card PCI/PCIv2/PnP ISDN driver v0.0.1
    [   38.720302] wlan0: ethernet device 00:1f:3f:05:1e:bc using NDIS driver: fwlan, version: 0x2000c6f, NDIS version: 0x501, vendor: 'AVM FRITZ!WLAN USB Stick', 057C:6201.F.conf
    Code:
    morri@schrabbelkiste:~$ locate ndiswrapper.ko/lib/modules/2.6.38-10-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    /lib/modules/2.6.38-11-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    /lib/modules/2.6.38-8-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    /lib/modules/3.0.0-17-generic/kernel/ubuntu/ndiswrapper/ndiswrapper.ko
    morri@schrabbelkiste:~$ uname -aLinux schrabbelkiste 3.2.0-25-generic #40-Ubuntu SMP Wed May 23 20:33:05 UTC 2012 i686 i686 i386 GNU/Linux
    Code:
    morri@schrabbelkiste:~$ ndiswrapper -vutils version: '1.9', utils version needed by module: '1.9'
    module details:
    filename:       /lib/modules/3.2.0-25-generic/updates/dkms/ndiswrapper.ko
    version:        1.57
    vermagic:       3.2.0-25-generic SMP mod_unload modversions 686
    Code:
    morri@schrabbelkiste:~$ sudo dkms build -m ndiswrapper -v 1.57
    [sudo] password for morri: 
    Module ndiswrapper/1.57 already built for kernel 3.2.0-25-generic/4
    morri@schrabbelkiste:~$ sudo dkms install -m ndiswrapper -v 1.57
    Module ndiswrapper/1.57 already installed on kernel 3.2.0-25-generic/i686
    morri@schrabbelkiste:~$ sudo modprobe ndiswrapper
    morri@schrabbelkiste:~$
    It still doesn't list it above as a module in the 3.2 Kernel .
    So it works now, it must have done the last three steps by itself . Thanks for you help.
    Last edited by mojo risin; July 3rd, 2012 at 07:47 AM.

  5. #1185
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Comprehensive ndiswrapper troubleshooting guide

    mojo risin: it must have built the module when you installed the ndiswrapper-dkms package, so it wasn't necessary to build it yourself as I had suggested. In any case, I'm glad it works now, and thanks for your patience sorting through the issue.

  6. #1186
    Join Date
    Oct 2012
    Beans
    65
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Comprehensive ndiswrapper troubleshooting guide

    Ndiswrapper keeps hanging on $sudo modprobe ndiswrapper

    pcid is 14e4:4329

    drivers I'm attempting to install are bcmwl5

    Everything goes smoothly until it comes time to load the driver module.

  7. #1187
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Comprehensive ndiswrapper troubleshooting guide

    Laize: you should not need to use ndiswrapper for your device, as it is supported by the Broadcom STA driver. To install that driver, type these commands in a terminal (you will need an Internet connection for these commands to work; if you have no way of getting a temporary wired connection, let me know and we can work around it):

    Code:
    sudo apt-get install broadcom-sta-source broadcom-sta-common
    After that, reboot and your device should work. If it still does not, please let me know the output of:
    Code:
    dmesg | grep -e wlan -e sta -e b43
    lshw -C Network
    sudo iwlist scan
    cat /etc/lsb-release

  8. #1188
    Join Date
    Oct 2012
    Beans
    1

    Re: Comprehensive ndiswrapper troubleshooting guide

    hi
    friends,
    i m harry parker,
    i m not know more about this but i thinks this is useful for you.
    thank you
    .................................................. ..
    ----------------------------------------
    ATI RADEON HD 5670 – SERIES GRAPHICS CARDS FROM AMD

  9. #1189
    Join Date
    Feb 2010
    Beans
    1

    Re: Comprehensive ndiswrapper troubleshooting guide

    address for source has changed. use wget http://sourceforge.net/projects/ndis...ar.gz/download

  10. #1190
    Join Date
    Jul 2012
    Beans
    25

    Re: Comprehensive ndiswrapper troubleshooting guide

    Pretty laborious. Thanks for the document.

Page 119 of 121 FirstFirst ... 1969109117118119120121 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •