Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 31

Thread: How to use ndiswrapper

  1. #21
    Junior Member
    Join Date
    Feb 2007
    Posts
    6
    OK, I am at it again! Still no luck installing the wireless driver with ndiswrapper but maybe I am getting closer (I hope!). Last time when I tried to install,I got this message (this was with the Suse live DVD,but it should be similar with Knoppix)

    linux:/home/linux/ndiswrapper-1.37 # make
    make -C driver
    make[1]: Entering directory `/home/linux/ndiswrapper-1.37/driver'
    Can't find kernel build files in /lib/modules/2.6.18.2-34-default/build;
    give the path to kernel build directory with
    KBUILD=<path> argument to make
    make[1]: *** [prereq_check] Error 1
    make[1]: Leaving directory `/home/linux/ndiswrapper-1.37/driver'
    make: *** [all] Error 2

    Where is the Kernel build directory and how do I get it to build those files?
    Any suggestions?
    As for knoppix I am still trying but for now I always get the same (discouraging) answer: bcmwl5.inf :invalid driver

  2. #22
    Junior Member
    Join Date
    Feb 2007
    Posts
    4
    Do I need to unistall ndiswrapper first and after install it then install the packages............I realy confused when I download the packages I install them but when I typed ndiswrapper -i bcmwl5 it said that ndiswrapper not found........Can u guide me how can I uninstall and then nstall the new version on Knoppix 2.7(Whoppix 2.7) Live CD..........and also can u put the exact package links for me. at last can you guide me step by step because I just trying use Linux OS for about a week so I need to guide step by step








    Quote Originally Posted by posmanet
    Permission errors are most likely happening when You are trying to do sometiong as user, that only root is allowed to do. Use a root shell (find itin the Knoppix menu) for ndiswrapper stuff. By the way, the exact error will be very helpful!

    Reinstalling ndiswrapper:

    version 1) You have an internet connection (maybe via LAN) - do as root:
    apt-get update # this means updating the lists of available software packages
    apt-get install ndiswrapper --reinstall # this one reinstalls/updates Your ndiswrapper software

    version 2) Find another computer that has an internet connection, and search for an ndiswrapper debian package (.deb). Download it, and move it to Your target machine. There, You can install it using:
    dpkg -i /path/to/Your/ndiswrapper.deb

    Greetings

    Update:
    I think You'll need more Packages than just one. On my system, following ndiswrapper packages are installed:
    ii ndiswrapper-common 1.15-1 Userspace utilities for ndiswrapper
    ii ndiswrapper-modules-2.6.17 1.16-1 Linux kernel module for NdisWrapper for 2.6.17
    ii ndiswrapper-utils 1.8-1 User space tools for ndiswrapper
    ii ndiswrapper-utils-1.7 1.8-2 Userspace utilities for ndiswrapper
    (You could check this out on Your machine with "dpkg -l | grep ndiswrapper")

  3. #23
    Member registered user
    Join Date
    Jun 2005
    Posts
    51
    I'm sorry, but i dont know such an old knoppix as 2.7, and what is whoppix?!

    The description i gave You was general debian administration, and it already was step by step (there are no smaller steps). If You use apt-get You dont have to uninstall anything manually and You dont have to care of that. Best thing is to get an internet connection via LAN and install via apt. I dont have exact links to any debian packages (.dep) sorry - You can use google Yourself i think.

    Greetings

  4. #24
    Junior Member
    Join Date
    Feb 2007
    Posts
    6
    Yes,yes,yes I got it! Dear posmanet I am writing this from my wireless laptop under Knoppix! It really came down to a mistyped path for my driver so poor ndiswrapper could not find it. Stupid {very stupid) mistake. But still; you really have to earn your Linux! Now being on a live DVD, there is no way to save this configuration I suppose and you have to start over again next time you start the computer?
    A happy man and thank you for your suggestions and keeping the faith, it was needed!

  5. #25
    Member registered user
    Join Date
    Jun 2005
    Posts
    51
    Im happy to hear that it works!

    One way to "save" Your special wlan configuration would be, to create a bash script, including the commands You needed to setup Your wireless connection - and store this file on a fixed drive oder USB stick or similar. This can be quite easily been done by creating a text file, entering Your commands (one per line), save, and change permissions of this file to being executable. The first line in this file should contain something like this:

    #!/bin/sh

    Greetings, and happy wireless networking.

    By the way, on my system ndiswrapper runs better than bcm43xx driver. bcm43xx is slower (11mbit only) and after a while connection is lost magically, and cannot be restored (only by reboot). Well, this driver is still under development, and i dont even have the latest version - so there may be more to come in the future.

  6. #26
    Junior Member
    Join Date
    Feb 2007
    Posts
    6
    Well, on my system ndiswrapper runs at the rated speed of 54mb/s and it's a real beauty. The funny thing though is that I didn't have to configure anything. After driver installation I just did modprobe and looked into desmg and it gave me my wlan0 with essid and everything. Of course my wireless router was running and I guess the card detected it and configured the whole thing.I really was up and running before I realized it.

    I don't think the 43xx driver will work on my system although I have it in the catalog of the driver file I downloaded. W'll see.

    If I make a file to save the config, is the first line added automatically or do you have to write (or edit) it yourself?

  7. #27
    Member registered user
    Join Date
    Jun 2005
    Posts
    51
    You'll have to enter the first line (and all following lines) yourself. Then save the file on one of Your fixed drives. When you boot next time, You can just mount the fixed drive, and start it (as root) - it will work as if You would enter the commands manually. For example, You could creat a file called "wlan-start" on the first partition of the first hard disc drive. (This would be c:\ under Windows, and hda1 under Linux.) This file should contain something linke this (example, with windows wlan-driver in c:\wlan-driver\):

    #!/bin/sh
    echo "Setting up wireless networking."
    ndiswrapper -i /media/hda1/wlan-driver/bcmwl5.inf
    modprobe ndiswrapper
    # This is a comment: You could also use ifup / ifconfig / iwconfig for networt setup here:
    netcardconfig

    For the moment, i will stay to ndiswrapper (i also have 54mbit here and no interruptions at all) - but i'm looking forward to using bcm43xx in future versions of this driver (and Knoppix, containing newer kernel/drivers).

    Greetings

  8. #28
    Junior Member
    Join Date
    Feb 2007
    Posts
    4
    hi posmanet

    Finally I set my wireless in knoppix 5.1.1 Live dvd and thanks alot but I really need to set it in whoppix 2.7 ( you can find it here http://distrowatch.com/?newsid=02683) and I found that the problem is my ndiswrapper and I need to Uninstall and install it again.........th problem here is I dont know how to Uninstall it and then Install.......can you guide me ow can I do that Setp-By-Step ..........I read sth about how to do it but I didnt get any result I can not use cable connection becuase I;m using my university wireless AP (I can not use apt-get command).............at the end thanks again

  9. #29
    Member registered user
    Join Date
    Jun 2005
    Posts
    51
    Dear Mehrdad,
    If Your Whoppix is based on Knoppix, the step-by-step description i already gave should work. If not, either You did something wrong (read - try again), got the wrong package (use Your favourite search machine), or it is some problem concerning Whoppix. You should ask someone in the Whoppix forum then. There's nothing more i can do from here. And sorry, i dont have the time to start tiddling with Whoppix - i'm fine with Knoppix, and can help You with that.
    Greetings

  10. #30
    Junior Member
    Join Date
    Feb 2007
    Posts
    6
    Thanks Posmanet, I will sure try to do this and will keep you posted!Thanks again because you kept me alive in the wireless linux business!

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. NDiswrapper on 5.1.1
    By Protocol in forum General Support
    Replies: 0
    Last Post: 01-21-2007, 03:05 AM
  2. 'modprobe ndiswrapper' cannot find ndiswrapper module
    By Kaishain in forum General Support
    Replies: 0
    Last Post: 05-04-2006, 11:16 AM
  3. ndiswrapper
    By giant_toaster in forum MS Windows & New to Linux
    Replies: 3
    Last Post: 11-23-2005, 09:09 AM
  4. apt-get & ndiswrapper
    By cyph3r in forum Networking
    Replies: 4
    Last Post: 07-25-2004, 08:22 PM
  5. ndiswrapper and mn-730
    By urbster1 in forum Networking
    Replies: 1
    Last Post: 05-11-2004, 08:27 AM

Posting Permissions

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


57-1000333-01 Brocade XBR-000212 32G Multi-mode SFP picture

57-1000333-01 Brocade XBR-000212 32G Multi-mode SFP

$29.00



Cisco SG110 24 Port Gigabit Ethernet Switch w/ 2 x SFP SG110-24 picture

Cisco SG110 24 Port Gigabit Ethernet Switch w/ 2 x SFP SG110-24

$117.00



Mellanox 10/25GbE SFP28 Network Card MCX512A-ACAT ConnectX-5 EN Ethernet Adapter picture

Mellanox 10/25GbE SFP28 Network Card MCX512A-ACAT ConnectX-5 EN Ethernet Adapter

$284.00



INTEL 10G SFP+ SR SFP E10GSFPSR FTLX8571D3BCV-IT For X520-DA2 X520-SR2 X710-DA2 picture

INTEL 10G SFP+ SR SFP E10GSFPSR FTLX8571D3BCV-IT For X520-DA2 X520-SR2 X710-DA2

$15.90



NEW Sealed Cisco SFP-10G-LR 10GBASE-LR SFP+ 1310nm 10km *US Shipping* picture

NEW Sealed Cisco SFP-10G-LR 10GBASE-LR SFP+ 1310nm 10km *US Shipping*

$18.00



F5 Networks 10GB OPT-0016-00 F5-UPG-SFP+-R 10GBASE/SR SFP Transceiver picture

F5 Networks 10GB OPT-0016-00 F5-UPG-SFP+-R 10GBASE/SR SFP Transceiver

$4.00



Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03  picture

Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03

$8.00



Mellanox Original MFM1T02A-SR 10GbE 10GBASE-SR SFP+ Transceiver picture

Mellanox Original MFM1T02A-SR 10GbE 10GBASE-SR SFP+ Transceiver

$9.00



10 PCS Cisco GLC-LH-SMD 10-2625-01 1310nm SFP Transceiver Module picture

10 PCS Cisco GLC-LH-SMD 10-2625-01 1310nm SFP Transceiver Module

$85.00



LOT OF 20 Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module picture

LOT OF 20 Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module

$89.00