Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Redhat / Fedora Linux Help > Fedora 7 or 8 WMP54GS ndiswrapper

Forgot Password?
 Redhat / Fedora Linux Help   Help and discussion related to Redhat and Fedora Linux.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 12-17-2007   #1 (permalink)
Just Joined!
 
Join Date: Mar 2006
Posts: 11
Fedora 7 or 8 WMP54GS ndiswrapper

I just bought a new system with SATA drive. Cannot get Fedora 6 to "see" the sata drive so I stuck in the Fedora 7disk then tried Fedora 8 disk. When I try to use the "built in" module for my BROADCOM 4318 CHIPSET (LINKSYS WMP54GS with Speedbooster version 4), I can "activate" or ifup but I get nowhere. With Fedora Core 6, I could "blacklist bcm43xx" install ndiswrapper and use wmp54gs.inf.

With Fedora 7 and 8, I try to blacklist the built-in modules but when I "ndiswrapper -l" I get DRIVER INSTALLED (wmp54gs) using alternate driver SSB or BROADCOM43xx or "the built-in". It's frustrating because NDISWRAPPER worked fine in FC6. Neither Fedora 7 nor 8 seem to want to play nice. Does anyone have any thoughts on how to debug the system. Or recommend a better card for wireless. My internet service is through a wireless provider so I really need a good LINUX card.
travismc1 is offline  


Reply With Quote
Old 12-18-2007   #2 (permalink)
Linux Engineer
 
valemon's Avatar
 
Join Date: Oct 2006
Location: Volos
Posts: 914
Send a message via MSN to valemon Send a message via Skype™ to valemon
Yesterday I installed ndiswrapper in my Fedora 8. What to do:
Uninstall completely any previous versions of ndiswrapper.
Download the latest stable one from here

Now we are going to remove Fedora 8 in-built drivers
Quote:
rmmod b43
rmmod ssb
blacklist the modules
Quote:
echo "blacklist b43" >> /etc/modprobe.d/blacklist
echo "blacklist ssb" >> /etc/modprobe.d/blacklist
Unpack and install ndiswrapper
Quote:
tar -zxvf ndiswrapper-1.50.tar.gz
cd ndiswrapper-1.50
make distclean
make
make install)
Then install the Windows drivers
Quote:
ndiswrapper -i driver.inf
Finally
Quote:
depmod -a
modprobe ndiswrapper
ndiswrapper -ma
This should get you going.
__________________
Linux is like a Teepee, No Windows, No Gates, Only Apache Inside!
Arch/Moblin
Linux user #442041
valemon is offline   Reply With Quote
Old 12-26-2007   #3 (permalink)
Just Joined!
 
Join Date: Mar 2006
Posts: 11
Thanks for the help

I followed the procedure and everything worked fine. Thank you. If anyone reads this and can answer....

What does "make distclean" do?

and

What does "depmod -a" do?

Of course the real trick may have been the updated ndiswrapper files.

These are two steps that I had never done before. But thanks all the same....
travismc1 is offline   Reply With Quote
Old 12-26-2007   #4 (permalink)
Linux Engineer
 
valemon's Avatar
 
Join Date: Oct 2006
Location: Volos
Posts: 914
Send a message via MSN to valemon Send a message via Skype™ to valemon
Glad to help you travismc1.
Quote:
If you type `make distclean', then make not only removes the same files as does `make clean' but also the `TAGS', `Makefile', and `config.status' files. (Although it is not evident, this makefile (and `config.status') is generated by the user with the configure program, which is provided in the tar distribution, but is not shown here.)
also
Code:
man <<command>>
is really helpful
__________________
Linux is like a Teepee, No Windows, No Gates, Only Apache Inside!
Arch/Moblin
Linux user #442041
valemon is offline   Reply With Quote
Old 12-29-2007   #5 (permalink)
Just Joined!
 
Join Date: Dec 2007
Posts: 1
I got a warning while compiling ndiswrapper on Fedora 8 ( Linux 2.6.23.1-42.fc8 ).

*** WARNING: This kernel seems to use 4K stack size option (CONFIG_4KSTACKS); many Windows drivers will not work with this option enabled. Disable CONFIG_4KSTACKS option, recompile and install kernel

I'm going to ignore it for now and see if my driver works, but I thought I would mention it. Did anyone else get this warning?

Jason
jburke71 is offline   Reply With Quote
Old 12-30-2007   #6 (permalink)
Linux Engineer
 
valemon's Avatar
 
Join Date: Oct 2006
Location: Volos
Posts: 914
Send a message via MSN to valemon Send a message via Skype™ to valemon
I got this warning also but I had no problem running wireless. Try to get this working and post here any error output. Make sure you are using latest stable version of ndiswrapper
__________________
Linux is like a Teepee, No Windows, No Gates, Only Apache Inside!
Arch/Moblin
Linux user #442041
valemon is offline   Reply With Quote
Old 01-01-2008   #7 (permalink)
Just Joined!
 
Join Date: Mar 2006
Posts: 11
4k Stacks

I have always seen the comment about some drivers use 8K Stacks. I think it's a blanket statement meant to inform what could be a problem after the fact. WMP11 by linksys and WMP54GS both work as is. My problem was that I hadn't tried the latest stable ndiswrapper/make distclean/depmod -a. Everything else I had done had always worked before.
travismc1 is offline   Reply With Quote
Old 01-01-2008   #8 (permalink)
Just Joined!
 
Join Date: Jan 2008
Posts: 3
Fedora 8 - Dell Inspiron B130 - NDISWRAPPER - BROADCOM 4318

Tried all of valemon's steps and ran into a problem with not having a link to kernel source when trying to do the make distclean. Found an NDISWRapper installer for 1.48 on Sourceforge and it clued me into what libs I was missing. Was finally able to uninstall 1.48 and install 1.51 and use it on my 4318 windows XPsp2 driver. I know have a wlan0 network connection that won;t activate and Network manager is I use it cannot connect either.

Any ideas as to how to proceed next for a real linux noob.
BobLfoot is offline   Reply With Quote
Old 01-02-2008   #9 (permalink)
Linux Engineer
 
valemon's Avatar
 
Join Date: Oct 2006
Location: Volos
Posts: 914
Send a message via MSN to valemon Send a message via Skype™ to valemon
Code:
iwlist wlan0 scan
What is the output of this?
__________________
Linux is like a Teepee, No Windows, No Gates, Only Apache Inside!
Arch/Moblin
Linux user #442041
valemon is offline   Reply With Quote
Old 01-02-2008   #10 (permalink)
Just Joined!
 
Join Date: Jan 2008
Posts: 3
Broadcom Working on Dell B130

Two stupid mistakes. I forgot to blacklist the ssb and then forgot the 0x when entering my key.

Works now.
BobLfoot is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 07:14 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2