| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
|
|
|
|
|
Reviews
|
Views
|
Date of last review
|
|
18
|
126799
|
02-02-2009
|
|
 |
|
Recommended By
|
Average Price
|
Average Rating
|
|
89% of reviewers
|
$34.20
|
8.5
|
|
|
|
|
|
|
|
Description:
|
NOTE: It appears Belkin has changed the chipset and is now (Jan 2009) using the rtl8180 chipset, which may not work under Linux.
Product works beautifully with ndiswrapper. Tested on MDK 10.1 community edition.
Used ndiswrapper ver 0.11
had to install kernel source files using rpmdrake
had to install wireless tools
downloaded broadcom 94306 driver from emachines ftp site as listed at ndiswrapper.sourceforge.net
Caution: modprobe ndiswrapper locked up entire system becuase I had downloaded latest driver from belkin site. Use ftps at ndiswrapper site.
|
|
Keywords:
|
broadcom 94306 wireless networking ndiswrapper linux compatiblity
|
|
/sbin/lspci output:
|
0000:00:0a.0 Network controller: Broadcom Corporation BCM94306 802.11g (rev
03)
|
|
Chipset:
|
Broadcom 94306
|
|
Connection Type:
|
PCI card
|
|
|
|
11-18-2004, 11:44 PM
|
#1
|
Registered: Nov 2004
Distribution: Fedora Core 5
Posts: 2
Rep:
|
Would you recommend the product? yes | Price you paid? (in USD): $46.29 | Rating: 7
|
Kernel (uname -r):
|
2.6.5-1.358
|
|
Distribution:
|
Fedora Core 2
|
Had a lot of trouble finding a driver that worked. Most of them I could get installed correctly and I could ping the wireless interface, but I couldn't ping anyone else.
I used ndiswrapper -0.11 (http://ndiswrapper.sourceforge.net/) and the driver I used a got from here: http://ftp.us.dell.com/network/R81433.EXE (use bcmwl5a.inf in directory AR). I couldn't seem to get the driver included on the CD to work. It appear to do what I mentioned above, it almost seemed like there was no rf being transmitted by the card.
lcpci -v displayed the card I got working as Broadcom Corporation BCM94306 802.11g (rev 03) chipset.
|
|
|
|
03-04-2005, 08:24 AM
|
#2
|
Registered: Jun 2004
Distribution: Redhat 9 mandrake 10 & Lindows 4.5
Posts: 16
Rep: 
|
Would you recommend the product? yes | Price you paid? (in USD): $32.00 | Rating: 0
|
Kernel (uname -r):
|
2.6.5-1.358
|
|
Distribution:
|
Fedora Core 3
|
I used ndiswrapper -0.11 same as the other the other whom made a post(http://ndiswrapper.sourceforge.net/) and the the same driver, although I found it on the Dell site, looking there first, as the one on the CD wouldn't work for me as well...
Dell Inspiron 5150 Notebook
lcpci -v also did display my Wifi card when working(only works when you atttempt to access the internet) otherwise, you would think it was off!
Broadcom Corporation BCM94306 802.11g (rev 03) chipset.
I would say there was little to no trouble getting this card to work, with 4 other Distro's I tried
Connectiva 10
Slackware 10
FC 3
Knoppix 3.6 Live CD(copied to HDD so now permenant)
all that need a swap, use the same one !!!
Regards,
PCfixinman
|
|
|
|
04-17-2005, 10:33 AM
|
#3
|
Registered: Nov 2004
Distribution: Gentoo 2005.0
Posts: 224
|
Would you recommend the product? yes | Price you paid? (in USD): $42.00 | Rating: 10
|
Kernel (uname -r):
|
2.6.9-1.667.stk16
|
|
Distribution:
|
Fedora Core 3
|
I'm giving this a 10 just to help the displayed average reflect this card's usefulness.
I would probably give this a 7 otherwise - if only because it has no native Linux driver.
However, I'm now happily using it with ndiswrapper 1.1, loaded up with the Windows driver included on the CD.
Be sure to read all of the appropriate instructions in the ndiswrapper wiki.
At their instruction, I'm using the special kernel (free) from Linuxant - I can't guaruntee this card'll work without it.
128-bit WEP encryption is handled no problem, although I haven't tried it with ndiswrapper's WPA extension yet.
I'm using a shell script to load it up, although as I'm still a bit of a newbie to FC3, I haven't managed to make this run automatically at boot time yet.
And because I'm such a nice guy, you can have my shell script (with all the personal bits removed) right here!
Code:
#!/bin/sh
echo
echo "*** Welcome to the YellowMackerel Wireless Loader! ***"
echo
echo "Starting your Wireless Internet Card..."
modprobe ndiswrapper
echo
echo "Setting your Network ID..."
/sbin/iwconfig wlan0 essid NETWORK_ESSID_HERE
echo
echo "Setting your Network Passcode..."
/sbin/iwconfig wlan0 key restricted HEX_128-BIT_WEP_CODE_HERE
echo
echo "*** Your Wireless Internet Card is now fully configured! ***"
echo
echo "Now logging in to the network, please stand by..."
echo
/sbin/dhclient wlan0
echo
echo
echo "Your Internet is now up and running!"
echo "Have a nice day!"
Obviously you're going to have to change the references to wlan0 to something else, if that's not what your wireless card is called on your system.
I don't guaruntee the script'll work with anything other than FC3, because I've not tested it, but I don't see why it wouldn't (with maybe some slight tweaking)
|
|
|
|
05-20-2005, 04:05 PM
|
#4
|
Registered: Feb 2003
Distribution: PCLinuxOS 0.93 and 0.92, Vector sometimes
Posts: 825
|
Would you recommend the product? yes | Price you paid? (in USD): $40.00 | Rating: 10
|
Kernel (uname -r):
|
2.6.11-6-mdk
|
|
Distribution:
|
Mandriva LE2005
|
Autodetected and native linux drivers used (no ndiswrapper).
Perfectly stable, too - impressive.
|
|
|
|
06-27-2005, 02:44 PM
|
#5
|
Registered: May 2005
Distribution: HP-UX 11i, Solaris, Fedora, Ubuntu, Debian, RHEL, CentOS
Posts: 69
|
Would you recommend the product? yes | Price you paid? (in USD): $36.55 | Rating: 10
|
Kernel (uname -r):
|
2.6.11.4-21.7
|
|
Distribution:
|
SuSE 9.3
|
After my last Wi-Fi card bit the dust, I reluctantly went to PC World (UK) to get another.
After looking here for suggestions I went and got this 54Mb Belkin model (marked F5D7000uk) priced £19.99.
Plugged it in, booted up SuSE 9.3 which autodetected it as a 'Belkin Ralink RT2500 802.11 Cardbus Reference Card'. SuSE prompted me to configure it in Yast and once I'd specified my SSID and WEP key, I was back on the network immediately.
It's been connected for the past day with no interruptions.
Bargain!
|
|
|
|
06-28-2005, 01:47 PM
|
#6
|
Registered: Jun 2005
Posts: 1
|
Would you recommend the product? yes | Price you paid? (in USD): $29.00 | Rating: 9
|
Kernel (uname -r):
|
2.6.11-6mdk
|
|
Distribution:
|
Mandriva 2005 LE
|
When installing Mandriva 2005 LE, it tried to use a linux driver but somehow that failed, so I went to Mandrake Control Center to set up a new network interface but this time I selected NDISWRAPPER. Then it prompted me for the WIndows driver path and I navigated to the CDROM and selected the .INI file from the drivers folder and voila! It's working perfectly fine.
I have it configured to 54 Mbps and 64 bit encryption
PS: I gave it 9 on compatibility for not having a manufacturers linux driver
|
|
|
|
07-10-2005, 07:54 PM
|
#7
|
Registered: Jul 2005
Distribution: Debian Etch
Posts: 8
|
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 10
|
Kernel (uname -r):
|
2.6.8
|
|
Distribution:
|
debian and mandrake
|
lspci revealed this card to be Ralink rt2500. Card was purchased a couple weeks back, about the 7th July. Anyway the driver in mandrake 2005 LE works great (in ad-hoc mode), as does the compiled source rt2500 on sourceforge.
All in all a great card for the price and easy to set up.
****UPDATE****
because i have a different chipset to some i'll give more info.
under the box it says...version 3000uk. *p57463uk. part # f5d7000uk....
I've used it alot more and i'm even more impressed
|
|
|
|
08-15-2005, 07:39 AM
|
#8
|
Registered: Jul 2003
Distribution: Slackware
Posts: 7,466
|
Would you recommend the product? yes | Price you paid? (in USD): $36.20 | Rating: 10
|
Kernel (uname -r):
|
2.4.29
|
|
Distribution:
|
Slackware 10.1
|
I'm using NdisWrapper 1.1 and the RaLink drivers that I got from here. It was easy to install, following instructions from the wiki here. There's also a Slackware tutorial on LQ, that's for another card but the instructions are the same and it works. This is it. I'm very happy :D.
Edit: lspci shows the PCI ID as 1814:0201 for my card.
|
|
|
|
10-23-2005, 11:53 AM
|
#9
|
Registered: Oct 2005
Distribution: Sabayon 3.5Loop2
Posts: 1,150
|
Would you recommend the product? yes | Price you paid? (in USD): $10.00 | Rating: 10
|
Kernel (uname -r):
|
2.6.13-15
|
|
Distribution:
|
SuSE 10
|
SuSE 10 recognized this card out of the box, after adding SSID and my WEP password, it worked immediately. kwifimanager works well with it as well. Very nice card, very inexpensive, and no install hiccups at all. No drivers nessecary, SuSE 10's default wireless options install the Ralink chipset drivers.
|
|
|
|
10-29-2005, 04:14 PM
|
#10
|
Registered: Sep 2002
Distribution: Linux Mint Gloria, Slackware 12.2
Posts: 165
|
Would you recommend the product? yes | Price you paid? (in USD): $34.99 | Rating: 0
|
Kernel (uname -r):
|
2.6.13
|
|
Distribution:
|
Slackware 10.2
|
rev.4 of this card is using the bcm4318 chipset. No gpl drivers that I know of. As a sidenote, I was REALLY hoping to get the one with the rt2500 chipset since that driver IS GPL'd and it's pretty good. :-(
Anyway, ndiswrapper works flawlessly. Get the driver from here. It is bcmwl5a.inf.
ftp://ftp.support.acer-euro.com/notebook/aspire_3020_5020/driver/
|
|
|
|
01-23-2006, 03:12 PM
|
#11
|
Registered: Nov 2003
Distribution: Ubuntu 6.06 /SLED10
Posts: 45
|
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 10
|
Kernel (uname -r):
|
|
|
Distribution:
|
Mepis 3.4-3 RC3
|
This card detected right away no extra configuration needed. It even worked great just running from the live cd before installation.
|
|
|
|
01-29-2006, 01:07 PM
|
#12
|
Registered: Jan 2006
Distribution: Slackware 10.2
Posts: 19
|
Would you recommend the product? no | Price you paid? (in USD): None indicated | Rating: 7
|
Kernel (uname -r):
|
uname -r
|
|
Distribution:
|
Slackware 10.2
|
I have had nothing but trouble with this device since i bought it. #1 - it didn't work in windowze98, so i was a little worried when i tried to set it up in linux. It worked flawlessly in Knoppix 3.9, so i set out to get it to work in slack. It was a pain in the ass to set up, and it still isn't quite right. My biggest complaint is that iwconfig will not establish the values i want on the card. ie: i want to set the rate, and acces point...etc...but it refuse to change the values. (any help would be great, i have a thread started here)
I am using ndiswrapper, and the atheros driver 5211 (despite the card being a 5212...i can't find that driver)
pci id is: 168c:0013 (rev 01)
If you are a complete noob, do not get this card. If you have some experience... take a shot at it. When it does work it is extremely quick!
|
|
|
|
02-18-2006, 01:55 AM
|
#13
|
Registered: Jan 2006
Distribution: *buntu - Slackware - Anything on USB
Posts: 254
|
Would you recommend the product? yes | Price you paid? (in USD): $34.99 | Rating: 9
|
Kernel (uname -r):
|
2.6.12.2
|
|
Distribution:
|
SLAX
|
This is for Belkin F5D7000 v4000 (there is a sticker on the bottom of the box that clearly says 4000). There were other boxes of Belkin F5D7000 that did not have a version number and was in the same box (same girl in same pose had different color shirt on box). I had to use ndiswrapper to get it to work, but it only took 4 commands (it would have only taken 2, except for encryption). I have used this on other Linux distributions, including SUSE 10.0 and newer, Mandriva 2005 and newer, Knoppix, and about a dozen other live cds. Some info you might find useful:
lspci:
00:0c.0 Class 0280: 14e4:4318 (rev 02)
Network controller: Broadcom Corporation: Unknown device 4318 (rev 02)
console commands:
1) ndiswrapper -l /path_to_driver/bcmwl5.inf
2) modprobe ndiswrapper
3) iwconfig wlan0 key restricted XXXX-XXXX-XXXX-XXXX-XXXX
4) dhcpcd wlan0
If I turn encryption off, I'm on the net after step 2. Almost forgot, I'm using it with Linksys WRT54G router.
http://slax.linux-live.org/
|
|
|
|
03-31-2006, 12:30 AM
|
#14
|
Registered: Mar 2006
Posts: 46
|
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 10
|
Kernel (uname -r):
|
|
|
Distribution:
|
SUSE 10
|
The only issue I have is it seems not to be working at it's full potential in SUSE 10. I use the card on Windows XP and SUSE 10. On SUSE 10 it the green LED on the back is very very dim and I get a piss pore signal. So it's like putting a 90 year old in a sports card. I'm using the card as I write this. But the signal is at 29% but when I use the card in Windows XP I get around 80 to 90% signal strength.
|
|
|
|
09-28-2006, 02:38 PM
|
#15
|
Registered: Sep 2006
Posts: 0
|
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 6
|
Kernel (uname -r):
|
2.6.16.13-4-default
|
|
Distribution:
|
SUSE 10.1 (The Open/Free version)
|
they've taken the RT61 driver out of Suse 10.1 (well they would, it was useful :-).
So I had to follow the instruction at the SUSE wike to install the driver (fortunately I had installed both gcc and the kerfnel source, when I put SUSE 10.1 on my PC , as they're both needed). The link is -
http://susewiki.org/index.php?title=Setting_up_RT61_Wireless_Cards
The card I bought from Dixons (now Currys digital) in the UK. The box has the part number F5D7000uk on the bottom, nexst to the large bar-code. And ver.6000uk as the version number (in a rectangle near the part number).
|
|
|
|
10-18-2006, 05:36 AM
|
#16
|
Registered: Oct 2006
Distribution: Ubuntu Edgy Eft 6.10
Posts: 17
|
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 9
|
Kernel (uname -r):
|
|
|
Distribution:
|
SUSE 10.1
|
I'm a complete newbie at Linux, but honestly, setting up this card was so much easier than expected (after reading some of the comments here).
Setup with Linuxant, but I will try with ndiswrapper after the 30-day trial has ended. Note: I had to restart the computer to get it to accept my WEP key. (Data entered with Yast).
|
|
|
|
12-19-2006, 09:53 PM
|
#17
|
Registered: May 2005
Distribution: Gentoo
Posts: 123
|
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 8
|
Kernel (uname -r):
|
2.6.18-gentoo-r4kg4ysy
|
|
Distribution:
|
gentoo
|
non-native
make sure 4k stacks are disabled in the kernel before using. I had some serious kernel panics with 4k stacks.
|
|
|
|
02-02-2009, 03:00 PM
|
#18
|
Registered: Jan 2004
Posts: 307
|
Would you recommend the product? no | Price you paid? (in USD): None indicated | Rating: 1
|
Kernel (uname -r):
|
2.6.26-1-686
|
|
Distribution:
|
Debian
|
It appears Belkin has changed the chipset and is now (Jan 2009) using the rtl8180 chipset.
Could not get the card to work using ndiswrapper and using any drivers I could find.
Card would be recognized and the activity light on the card would blink but could not connect to the network.
|
|
|
|
All times are GMT -5. The time now is 11:03 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|