GIDForums  

Go Back   GIDForums > Computer Forums > Computer Software Forum - Linux
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rating: Thread Rating: 9 votes, 5.00 average.
  #21  
Old 01-Mar-2005, 15:51
null null is offline
New Member
 
Join Date: Mar 2005
Posts: 2
null is on a distinguished road
I have got the BELKIN Wireless 54G card but when I try and load the drive it just says driver invalid. I just opened the file to look inside and it looks like its only for Windows computers (it has headings like Win2k specific and Win9x specific) but nothing that looks like its to do with Linux.

I went to the broadcom site to look at the drivers they have there but Im not really sure what to do as you have to complie them and Im new to linux.
  #22  
Old 02-Mar-2005, 02:21
null null is offline
New Member
 
Join Date: Mar 2005
Posts: 2
null is on a distinguished road
Ive got the driver etc sorted now but what do I do not. THe driver is properly loaded and it detects the hardware.

How do I configure the SSID and the channel it uses ? (im using fedora core 3)
  #23  
Old 02-Mar-2005, 15:52
crystalattice's Avatar
crystalattice crystalattice is offline
Aspiring author
 
Join Date: Apr 2004
Location: Japan (again)
Posts: 1,628
crystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nice
Quote:
Originally Posted by null
Ive got the driver etc sorted now but what do I do not. THe driver is properly loaded and it detects the hardware.

How do I configure the SSID and the channel it uses ? (im using fedora core 3)
I don't know FC3, so maybe someone can say exactly. But there should be an area within the hardware or network settings dealing w/ network cards. In there it should list your network devices, probably an Ethernet port and your wireless card; you should be able to edit the settings of your card. One of the options after choosing your card should deal w/ wireless settings allowing you to change the SSID and channel.

For comparison, under SUSE (which I have on my laptop), the process is: open YAST, choose "Network Devices", choose "Network Card", choose "Change..." under network devices, select the wireless card and click "Edit", click "Advanced" then "Hardware Details", click "Wireless Settings", then enter the SSID and WEP key. Choose "Expert Details" to make changes to the channel.

Hope that gives you an idea. FC3 is probably a similar process, but hopefully not nearly as laboring. It took me almost an hour to find everything in SUSE.
__________________
Start Programming with Python-A beginner's guide to programming and the Python language.
-------------
Common Sense v2.0-Striving to make the world a little bit smarter.
  #24  
Old 12-Mar-2005, 05:15
edhardie edhardie is offline
New Member
 
Join Date: Mar 2005
Posts: 1
edhardie is on a distinguished road

Need that bloody inf.


Hello, I have a belkin wireless 54G PCMCIA card. However I lost the CD that came with it and I understand I need the inf file for it to work. I went to Belkins site and downloaded the driver, but that came as an exe and when I installed it I couldn't find any belkin infs, only sys's.
Can anybody direct me where to find the inf file, or could some very kind person with the CD upload the PCMCIA inf?
Thanks Alot
Ed.
  #25  
Old 13-Mar-2005, 08:46
dsmith's Avatar
dsmith dsmith is offline
Senior Member
 
Join Date: Jan 2004
Location: Utah, USA
Posts: 1,351
dsmith is a glorious beacon of lightdsmith is a glorious beacon of lightdsmith is a glorious beacon of lightdsmith is a glorious beacon of lightdsmith is a glorious beacon of light
Quote:
Originally Posted by null
Ive got the driver etc sorted now but what do I do not. THe driver is properly loaded and it detects the hardware.

How do I configure the SSID and the channel it uses ? (im using fedora core 3)

Hi null. Sorry for the delay in getting a responce up. I have been meaning to do this for sometime, but keep getting sidetracked

What you need is the wireless tools package for linux which can be found here

It contains a utility called iwconfig which can be used to set the essid, encryption key, channel, etc. If you install this package, you will get a nice man page describing all of what can be done.

I put a line in my startup file (right after I load the module) like this:
Code:
/usr/local/sbin/iwconfig eth1 essid NAME key restricted XXXXXXXXXX

That sets my essid to NAME and gives the encryption key as well. You need to set the channel as well so you should use something like:
Code:
/usr/local/sbin/iwconfig eth1 essid NAME key restricted XXXXXXXXXX channel X

replacing eth1, NAME and the X's as suitable.

Hope this helps.
  #26  
Old 24-Mar-2005, 02:47
Masum Masum is offline
New Member
 
Join Date: Mar 2005
Posts: 20
Masum is on a distinguished road
Dear Crystalattice,
I m trying to install BELKIN wireless network card as DSMITH suggested, but i m getting the same error msg as u got. It seems like u've fixed the problem. Please help me out to fix this problem. I've been strugling with this for couple of days now. I am a new member here and a new linux user. Hopefully i'll learn a lot of things from here.

Error message i m getting:

Code:
Entering directory '/home/cody/ndiswrapper-0.12/driver' Can't find kernel sources in /lib/modules/2.6.5-7.111.19-default/build; give the path to the kernel sources with KSRC=<path> argument to make


regards,
masum
  #27  
Old 24-Mar-2005, 16:37
crystalattice's Avatar
crystalattice crystalattice is offline
Aspiring author
 
Join Date: Apr 2004
Location: Japan (again)
Posts: 1,628
crystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nice
Quote:
Originally Posted by Masum
Dear Crystalattice,
I m trying to install BELKIN wireless network card as DSMITH suggested, but i m getting the same error msg as u got. It seems like u've fixed the problem. Please help me out to fix this problem. I've been strugling with this for couple of days now. I am a new member here and a new linux user. Hopefully i'll learn a lot of things from here.

Error message i m getting:

Code:
Entering directory '/home/cody/ndiswrapper-0.12/driver' Can't find kernel sources in /lib/modules/2.6.5-7.111.19-default/build; give the path to the kernel sources with KSRC=<path> argument to make

regards,
masum
What Linux distro are you using? Some of the config files may be located in a different directory. And I have to ask, did the info I posted from SuSE help any? Are you able to connect to the net via a regular Ethernet port?

I currently don't have my card installed; I had to send it to the manufacturer because it wouldn't connect, even in Windows. Which brings up a good point: does your card work well in Windows? Oh yeah, if you're getting the above message, then you need to change the directory where the ydriver is located; "cody" is my name, hence the name of my user directory in home. Obviously the directory where your driver is located will most likely be different.
__________________
Start Programming with Python-A beginner's guide to programming and the Python language.
-------------
Common Sense v2.0-Striving to make the world a little bit smarter.
  #28  
Old 24-Mar-2005, 19:51
Masum Masum is offline
New Member
 
Join Date: Mar 2005
Posts: 20
Masum is on a distinguished road
Hi Cody,
Thanx for ur quick reply. I've Redhat 9 in my comp. and the card is working fine in Windows. My directory is different, thats right. I copied the error msg from ur post as i was getting the same msg. Sorry to confuse u with that.
Here's the exact msg i got.
Error Message:
Code:
make -C driver make[1]: Entering directory `/mnt/F:Backup/Software/Unix/NICdriver/ndiswrapper-0.12/driver' can't find kernel sources in /lib/modules/2.4.20-8/build; give the path to kernel sources with KSRC=<path> argument to make make[1]: *** [prereq_check] Error 1 make[1]: Leaving directory `/mnt/F:Backup/Software/Unix/NIC driver/ndiswrapper-0.12/driver' make: *** [all] Error 2

I didn't get the ydriver thing. If you could explain in a bit more details or may be show me the commands that would be really great. As i said i am a very new unix user. I've to know and learn a lot of things.

regards,
masum
  #29  
Old 25-Mar-2005, 18:54
crystalattice's Avatar
crystalattice crystalattice is offline
Aspiring author
 
Join Date: Apr 2004
Location: Japan (again)
Posts: 1,628
crystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nicecrystalattice is just really nice
Quote:
Originally Posted by Masum
Hi Cody,
Thanx for ur quick reply. I've Redhat 9 in my comp. and the card is working fine in Windows. My directory is different, thats right. I copied the error msg from ur post as i was getting the same msg. Sorry to confuse u with that.
Here's the exact msg i got.
Error Message:
Code:
make -C driver make[1]: Entering directory `/mnt/F:Backup/Software/Unix/NICdriver/ndiswrapper-0.12/driver' can't find kernel sources in /lib/modules/2.4.20-8/build; give the path to kernel sources with KSRC=<path> argument to make make[1]: *** [prereq_check] Error 1 make[1]: Leaving directory `/mnt/F:Backup/Software/Unix/NIC driver/ndiswrapper-0.12/driver' make: *** [all] Error 2

I didn't get the ydriver thing. If you could explain in a bit more details or may be show me the commands that would be really great. As i said i am a very new unix user. I've to know and learn a lot of things.

regards,
masum
Sorry about the "ydriver"; it's just a typo. Have you tried updating your kernel? That could be a problem. Here's a link to a thread here that discusses kernel upgrading, and here's a link to the Redhat document discussing kernel upgrading.

I did find this link in the Redhat forums talking about ndiswrapper; it might have some information that will help you out. It appears fairly straightforward. If not, we'll keep working on it here.

For what it's worth, here's a link to the Redhat documentation page. I don't know if you already have these; if not, they may be some help to you as you start out.
__________________
Start Programming with Python-A beginner's guide to programming and the Python language.
-------------
Common Sense v2.0-Striving to make the world a little bit smarter.
  #30  
Old 26-Mar-2005, 02:10
Masum Masum is offline
New Member
 
Join Date: Mar 2005
Posts: 20
Masum is on a distinguished road
Thanx a lot Cody....I'll try to check those links and try to work something out. If not then i'll discuss with you again. I am actuallly trying to update my system to Fedora. Let's c what happens.

regards,
masum
 
 

Recent GIDBlogProblems with the Navy (Chiefs) by crystalattice

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Wireless G Desktop Card Robo Computer Software Forum - Linux 3 04-Oct-2006 08:49
Wireless Card Not Finding Networks sublime12 Computer Hardware Forum 3 16-Sep-2006 21:01
[HOWTO]Belkin 54G Wireless card in linux FC5 (Broadcom chip) alaa Computer Software Forum - Linux 1 10-Sep-2006 20:36
Which type of wireless ethernet card do you recommend? Nickster64 Computer Hardware Forum 2 29-Apr-2006 23:10
Need Help with my Cards Program (C++) krisopotamus C++ Forum 2 06-Oct-2005 17:48

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 18:43.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.