LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking
User Name
Password
Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 06-27-2006, 02:04 AM   #1
Just Dave
LQ Newbie
 
Registered: Jun 2006
Distribution: Ubuntu
Posts: 4

Rep: Reputation: 0
Belkin Wireless 802.11g F5D7000 Card Problems


Okay... I am new to Linux. Xompletely new. And I ahve also never used DOS or anything like netstat... So I am completely lost as to how to set my card up. So main things are. I know it's on Channel 11(I'm looking at it right now), It has a Network Key... and... yea. I have no idea what to do. If I'm breaking the rules of the forum or anything, I'm really sorry. But I tried having two of my friends help me, and they couldn't figure it out either. So yea, can anybody help me start to finish with this?

Thanks,

-Dave

Edit:: Also, it's Ubuntu Linux.

Last edited by Just Dave; 06-27-2006 at 02:55 AM.
 
Old 06-27-2006, 10:56 AM   #2
2Gnu
Senior Member
 
Registered: Jan 2002
Location: Southern California
Distribution: Slackware 13.1
Posts: 1,872

Rep: Reputation: 48
Dave,

Welcome to LQ. You're not breaking any rules, but more info would help us help you.

Can you post the output of three commands:
lsmod, iwconfig and ifconfig?

Run as root from a terminal, these will list the device drivers loaded and in use, the wireless configuration settings and the network settings.

If the machine in question has Internet connectivity, highlight the lines spit out by those commands by clicking the mouse and dragging it over the desired text. A middle-click will paste it into another window.

If you have no connectivity, you can direct the output of the commands to a file.
lsmod > lsmod.txt
In that example, a file called "lsmod.txt" will be created that contains the needed info and save it to whatever directory you're in. You can then move the files to another machine that has a connection via a USB drive, CD ROM (although burning a CD for such small files is overkill).

If it's a dual-boot machine, you can save the files to a FAT32 partition and read them in Windows, but let's save that for now and hope that you have a wired connection working.
 
Old 06-27-2006, 06:43 PM   #3
enlight1
Member
 
Registered: Jun 2003
Distribution: Fedora 3
Posts: 82

Rep: Reputation: 15
I just installed a Belkin Wireless card. I see on the CD the part number matches yours. I have it working perfectly using madwifi drivers. I have a script that starts it all up, but I have to do so manually. I was just going to post a question about where to put the script to auto start this at boot.
Here is the script I use. ap hardware address must change to what you have, key must be set to what you have and ip address.

There are varaiation son this. Now to just get thi sto go automatically!

#1 /bin/bash
modprobe ath_pci
modprobe wlan_scan_sta
iwconfig ath0 ap 00:90:4c:7e:00:10
iwconfig ath0 key c784e917e7
iwpriv ath0 authmode 2
ifconfig ath0 192.168.1.3 netmask 255.255.255.0
route add default gw 192.168.1.1
 
Old 06-27-2006, 07:05 PM   #4
Just Dave
LQ Newbie
 
Registered: Jun 2006
Distribution: Ubuntu
Posts: 4

Original Poster
Rep: Reputation: 0
Dang, I guess more information would help. I'm sorry for not stating before. I am running dual-boot with Ubuntu and Windows XP. Ummm... I will first try what you said to do, 2Gnu, and if that doesn't help, I will use a flashdrive or something to boot fromusing your method, and if that doesn't work, then I'll try your method, enlight1. Thank much you two. I'm hoping that one of your posts will be effective into solving my problem. Also, thanks for the wlecome.

Also, enlight1, do I need to install that driver you spoke about? The madwifi dirver? Also, if not and I just need to use those commands to boot, how would I boot it using a dual-boot pc? Or can I just type those into the command prompt thing in Ubuntu? Thanks for your help, and sorry for being so... "childish"(?) about this... I know a lot about Windows, just not Dos or anything about Linux. It took me three tries to install Ubuntu correctly. xD
 
Old 06-27-2006, 08:34 PM   #5
enlight1
Member
 
Registered: Jun 2003
Distribution: Fedora 3
Posts: 82

Rep: Reputation: 15
Yes you need madwifi installed. They have a website with all the instructions you will need.

http://madwifi.org/

Follow there and good luck!
 
Old 06-27-2006, 09:11 PM   #6
enlight1
Member
 
Registered: Jun 2003
Distribution: Fedora 3
Posts: 82

Rep: Reputation: 15
Great. I solved my other question. Once you find the set of commands you need to bring up your network, edit the file /etc/rc.local and insert the commands at the end of that file. This is a script that executes after all else is set up and is for the user to customize.

Now my network is coming up fine at boot.

Regards.
 
Old 06-28-2006, 12:39 AM   #7
Just Dave
LQ Newbie
 
Registered: Jun 2006
Distribution: Ubuntu
Posts: 4

Original Poster
Rep: Reputation: 0
I think I may need some more info... I downloaded that madwifi driver and put it on an RW so I didn't have to waste space or find my dad's flashdrive or whatever... but when I opened it up in Ubuntu... it was really strange... Also, directions said something about compiling it.... I may need a bit more help than all that... Like I said above, I'm completely new to Linux. =\ Sorry...
 
Old 06-29-2006, 10:34 PM   #8
Just Dave
LQ Newbie
 
Registered: Jun 2006
Distribution: Ubuntu
Posts: 4

Original Poster
Rep: Reputation: 0
sorry but, bump?
 
Old 06-30-2006, 12:52 AM   #9
2Gnu
Senior Member
 
Registered: Jan 2002
Location: Southern California
Distribution: Slackware 13.1
Posts: 1,872

Rep: Reputation: 48
To turn source code into an executable binary that will run on your machine, it needs to be compiled. The typical steps are, using a command line, unzip the archive file: tar zxvf file_name.tar.gz, run the configure script: ./configure, compile: make, install the compiled binaries: change to root and make install.

There is almost always a README and/or INSTALL file in the archive with more specific instructions.

Alternatively, and especially with a distro like Ubuntu which is very GUI-fied, install a pre-compiled binary - a file that someone else has already baked for you and is ready to install. You'll find those in Ubuntu repositories - sites that host official or unofficial programs for your distro. Use the apt-get package manager to install, after making sure your apt-get configuration contains the repositories you need.

All of this probably sounds like gobbletygook, even though I'm trying my best to make it understandable. Read a bunch about apt-get, look at the LinuxQuestions Ubuntu forum, check out the "official" Ubuntu forums and hang out in some IRC Ubuntu channels. Eventually, it will make more sense.
 
  


Reply

Tags
wireless


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
802.11g Wireless Desktop network card (F5D7000) V1rus Linux - Wireless Networking 4 05-15-2006 10:40 PM
Problem installing wireless driver for belkin 802.11g DippityDoo Linux - Wireless Networking 7 01-16-2006 06:37 AM
Belkin 802.11g Wireless Desktop network card (F5D7000) V1rus Linux - Wireless Networking 1 05-21-2005 03:56 PM
problems with belkin 802.11g Wireless Ethernet Adapter under linux hellforgedangel Linux - Wireless Networking 2 04-18-2005 03:13 PM
Belkin 802.11g wireless problems wooster Linux - Wireless Networking 1 07-13-2004 05:31 PM


All times are GMT -5. The time now is 01:43 AM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration