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 > GNU Linux Zone > Wireless Internet > Need To Get Wi-Fi Working with Fedora 8

Forgot Password?
 Wireless Internet   Anything related to getting wireless set up in Linux. WLAN, WiFi, etc.

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 01-23-2008   #1 (permalink)
Just Joined!
 
Join Date: Jan 2008
Posts: 22
Need To Get Wi-Fi Working with Fedora 8

I currently access the Net using XP with Firefox browser.

I would like to access the Net in Fedora but don't know how to get my Wi-Fi to work in Fedora. My Wi-Fi is ATHEROS AR5007EG

Help please.

Cheers!
realdean
realdean is offline  


Reply With Quote
Old 01-23-2008   #2 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
Atheros chipsets are supported in Linux by the MadWifi drivers. The wiki entry for your card can be found here. Click on the link about using latest madwifi snapshot and a patch. It seems that you can also use NDISwrapper with the WinXP driver, there is a link for instructions to do that too.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 01-25-2008   #3 (permalink)
Just Joined!
 
Join Date: Jan 2008
Posts: 22
Hi Paul

It states in the ticket#1679:
Important note 1:
At this time, AR5007 support is limited to x86 (32bit)! It's not yet available for all the other platforms that MadWifi usually runs on. We are negotiating with Atheros in this regard. Further information will be provided in this ticket as soon as they become available.

My laptop Acer Travelmate 6252 is a 64-bit machine right?
realdean is offline   Reply With Quote
Old 01-25-2008   #4 (permalink)
Linux Guru
 
coopstah13's Avatar
 
Join Date: Nov 2007
Location: NH, USA
Posts: 1,756
As long as you installed the 32 bit version of Fedora you should be ok
coopstah13 is offline   Reply With Quote
Old 01-25-2008   #5 (permalink)
Just Joined!
 
Join Date: Jan 2008
Posts: 22
From my current XP, I've downloaded this readily-patched snapshot <madwifi-ng-r2756+ar5007.tar> and copied it to my thumb drive.

With this file, how do I use it in Fedora 8 to get my wi-fi working?

Thank u in advance for your kind help
____________
Dean
realdean is offline   Reply With Quote
Old 01-25-2008   #6 (permalink)
Linux Guru
 
coopstah13's Avatar
 
Join Date: Nov 2007
Location: NH, USA
Posts: 1,756
well this is just kind of general for at least installing that, but i'll give it a shot

you need to first switch to root, with su command
Code:
su
then I would copy that tar file to /usr/src and then extract it
Code:
tar xf <filename.tar>
then cd into the directory it makes, probably madwifi

probably has a configure script
Code:
./configure
provided that works, you should be able to run
Code:
make
and provided it compiles with no errors you can do
Code:
make install
then probably have to run
Code:
modprobe ath_pci
or something like that
coopstah13 is offline   Reply With Quote
Old 01-25-2008   #7 (permalink)
Just Joined!
 
Join Date: Jan 2008
Posts: 22
I do all that codes on the Terminal right?

Thanks coopstah13!
realdean is offline   Reply With Quote
Old 01-25-2008   #8 (permalink)
Linux Guru
 
coopstah13's Avatar
 
Join Date: Nov 2007
Location: NH, USA
Posts: 1,756
yes you run these from within a terminal, the only requirement I can be sure of is the header files for the kernel you are currently running need to be installed, however, I know almost nothing about fedora and yum, so if you need to install extra stuff due to the configure script failing we'll need someone elses assistance
coopstah13 is offline   Reply With Quote
Old 01-25-2008   #9 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
If you are not very experienced with Linux, going the route of patching a snapshot of the driver may be too much to ask. I would recommend using the NDISwrapper method. You still should download the latest NDISwrapper source and compile it.

If you want to try the patch method, there are instructions about 1/3 the way down on this page:
#1679 (Support for AR2425 (AR5007EG) chipset) - madwifi.org - Trac


Quote:
This patch is for 32-bits x86 platforms including i686 and AMD CPUs (Thanks strasak!). This patch does not work for 64-bits x86 platforms.
This patch is for the Madwifi driver snapshot r2756 only. Sorry about the wrong information in the original posting.

To apply the patch

1. Download the Madwifi driver snapshot r2756 using the following link and save the file.
snapshots.madwifi.org/madwifi-ng/madwifi-ng-r2756-20071018.tar.gz
2. Extract this driver source and change into the driver directory.
Code:
> tar -xvzf madwifi-ng-r2756-20071018.tar.gz 
> cd madwifi-ng-r2756-20071018/
3. Download the patch using the following link and save the file.
madwifi.org/attachment/ticket/1679/madwifi-ng-0933.ar2425.20071130.i386.patch?format=raw
4. Patch the Madwifi driver.
Code:
> patch -p0 < madwifi-ng-0933.ar2425.20071130.i386.patch
5. Make and install this updated driver according the instructions in the "INSTALL" file from the madwifi package.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 01-25-2008   #10 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
If you downloaded the readily-patched snapshot from here:
http://snapshots.madwifi.org/special...+ar5007.tar.gz

Then point your terminal to the file with the 'cd' command. Mine is in /home/paul/downloads/madwifi, so I do this:
Code:
> cd /home/paul/downloads/madwifi
To uncompress it enter this:
Code:
> tar xvfz madwifi-ng-r2756+ar5007.tar.gz
This will create a folder with all the files in it. Read through the README and INSTALL files, and any other important looking files. It says to use the 'make' and 'make install' commands to install. You will need your kernel source installed to do this.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead 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 09:17 AM.






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

Content Relevant URLs by vBSEO 3.3.0 RC2