Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Main Support Categories > Networking & Wireless
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Networking & Wireless
Having problems getting connected to the internet or getting your wireless card to work? Ask here.

 
Thread Tools Display Modes
Old April 25th, 2008   #11
Pinoy915
Just Give Me the Beans!
 
Join Date: Aug 2005
Location: Texas, US
Beans: 78
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to Pinoy915 Send a message via MSN to Pinoy915 Send a message via Yahoo to Pinoy915
Re: Atheros AR5007 not working on 8.04 Hardy

This procedure did not work for me. I am running Ubuntu 8.04 AMD64.
Pinoy915 is offline   Reply With Quote
Old April 25th, 2008   #12
IndyGUnFreak
5 Cups of Ubuntu
 
IndyGUnFreak's Avatar
 
Join Date: Sep 2006
Beans: 39
Ubuntu 7.04 Feisty Fawn
Send a message via ICQ to IndyGUnFreak Send a message via AIM to IndyGUnFreak Send a message via MSN to IndyGUnFreak Send a message via Yahoo to IndyGUnFreak
Re: Atheros AR5007 not working on 8.04 Hardy

Quote:
Originally Posted by Pinoy915 View Post
I am running Ubuntu 8.04 AMD64.
Thats probably why. Read the rest of the thread, I believe someone posted a link that details the issues this device has w/ 64bit.

IGF
__________________
Got Ubuntu?

Linux User #436060 http://counter.li.org/
IndyGUnFreak is offline   Reply With Quote
Old April 25th, 2008   #13
major_rocks
5 Cups of Ubuntu
 
Join Date: Apr 2007
Location: USA
Beans: 23
Ubuntu 7.10 Gutsy Gibbon
Send a message via MSN to major_rocks
Re: Atheros AR5007 not working on 8.04 Hardy

just curious if tomx is running 64bit hardware and 32bit ubuntu or, 64bit ubuntu on (obviously) 64bit hardware.

Let us know...Please
__________________
Model: HP Pavilion dv6707us Notebook PC, - Graphics Card: Nvidia 7150M
Processor: AMD Athlon(tm) 64 X2 Dual-Core Processor TK-57
Wireless Card: AR5006EG 802.11 b/g Wireless PCI Express Adapter w/ ndiswrapper & 64bit windows driver
major_rocks is offline   Reply With Quote
Old April 25th, 2008   #14
Pinoy915
Just Give Me the Beans!
 
Join Date: Aug 2005
Location: Texas, US
Beans: 78
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to Pinoy915 Send a message via MSN to Pinoy915 Send a message via Yahoo to Pinoy915
Re: Atheros AR5007 not working on 8.04 Hardy

Success!!! I have my wireless card working! I am using ndiswrapper with 64 bit drivers. Here is the thread I used to get mine working. http://ubuntuforums.org/showthread.php?t=512828

Here are the only steps I used. I did not disable anything in the restricted drivers menu.

Go to System/Administration/Hardware Drivers. Disable the default drivers by unchecking "Atheros Hardware Access Layer(HAL)" and "Support for Atheros 802.11 Wireless LAN cards." Reboot if necessary.

Blacklist the default driver:

Code:
echo "blacklist ath_pci" | sudo tee -a /etc/modprobe.d/blacklist
Get the 64 bit driver:
Code:
wget http://blakecmartin.googlepages.com/ar5007eg-64-0.2.tar.gz
Extract driver:
Code:
tar xvf ar5007eg-*.tar.gz
tar xvf ndiswrapper-newest.tar.gz
Ensure you have your kernel headers and the build essential package.
Code:
sudo aptitude update && sudo aptitude install linux-headers-$(uname -r) build-essential
Install ndisgtk:

Code:
sudo apt-get install ndisgtk
Either use ndisgtk to install the driver or:

Code:
sudo ndiswrapper -i net5211.inf
Load up ndiswrapper every time Linux is loaded:
Code:
sudo modprobe ndiswrapper
echo "ndiswrapper" | sudo tee -a /etc/modules
Restart:
Code:
sudo reboot
My card was detected and shows available networks but if it does not, try
Code:
sudo iwlist scan
My laptop is a Compaq C751NR. lspci gives me:
01:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)

I am running Ubuntu AMD64 8.04. Oh and by the way, the button for my wireless network is orange(off) and will not turn blue(on) but it is indeed working. It just will not change colors. The actual button works though.

Last edited by Pinoy915; April 28th, 2008 at 12:11 PM..
Pinoy915 is offline   Reply With Quote
Old April 25th, 2008   #15
ToM-X
5 Cups of Ubuntu
 
Join Date: Sep 2007
Beans: 18
Re: Atheros AR5007 not working on 8.04 Hardy

Nice, we have the card working in 32bit and 64bit.Just out of curiosity Pinoy915, does the WIFI card find networks after reboot. That was the problem with 32bit.

Either way, Nice work. Good to see the card working so everyone has wifi

See you later.
ToM-X is offline   Reply With Quote
Old April 25th, 2008   #16
CPImmanuel
5 Cups of Ubuntu
 
Join Date: Sep 2007
Location: Durham, NC
Beans: 24
Ubuntu 8.10 Intrepid Ibex
Send a message via AIM to CPImmanuel
Re: Atheros AR5007 not working on 8.04 Hardy

I get stuck on the build:
paul@paul-laptop:~$ cd madwifi-ng-r2756+ar5007
paul@paul-laptop:~/madwifi-ng-r2756+ar5007$ make
cd: 1: can't cd to /lib/modules/2.6.24-16-386/build
Makefile.inc:66: *** /lib/modules/2.6.24-16-386/build is missing, please set KERNELPATH. Stop.
paul@paul-laptop:~/madwifi-ng-r2756+ar5007$

any ideas? What do I set KERNALPATH to?

I assume that somewhow I need to add a string to indicate where the build code is...

Paul
CPImmanuel is offline   Reply With Quote
Old April 25th, 2008   #17
ToM-X
5 Cups of Ubuntu
 
Join Date: Sep 2007
Beans: 18
Re: Atheros AR5007 not working on 8.04 Hardy

Quote:
Originally Posted by CPImmanuel View Post
I get stuck on the build:
paul@paul-laptop:~$ cd madwifi-ng-r2756+ar5007
paul@paul-laptop:~/madwifi-ng-r2756+ar5007$ make
cd: 1: can't cd to /lib/modules/2.6.24-16-386/build
Makefile.inc:66: *** /lib/modules/2.6.24-16-386/build is missing, please set KERNELPATH. Stop.
paul@paul-laptop:~/madwifi-ng-r2756+ar5007$

any ideas? What do I set KERNALPATH to?

I assume that somewhow I need to add a string to indicate where the build code is...

Paul

Try:

Code:
sudo apt-get install linux-headers-$(uname -r)
ToM-X is offline   Reply With Quote
Old April 26th, 2008   #18
Pinoy915
Just Give Me the Beans!
 
Join Date: Aug 2005
Location: Texas, US
Beans: 78
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to Pinoy915 Send a message via MSN to Pinoy915 Send a message via Yahoo to Pinoy915
Re: Atheros AR5007 not working on 8.04 Hardy

Yes, it auto connects me to my wifi after reboot.
Pinoy915 is offline   Reply With Quote
Old April 26th, 2008   #19
major_rocks
5 Cups of Ubuntu
 
Join Date: Apr 2007
Location: USA
Beans: 23
Ubuntu 7.10 Gutsy Gibbon
Send a message via MSN to major_rocks
Re: Atheros AR5007 not working on 8.04 Hardy

nice job pinoy... I followed those same intructions for Gutsy, however it seems as though they dont quite work for me in Hardy...... i followed your abbreviated instructions, and the card see's my wireless network as well as others but it will not connect.

Did you by chance blacklist "ath_pci" ?

what you have posted should work for me, for some reason something small is different from Gutsy to Hardy.
__________________
Model: HP Pavilion dv6707us Notebook PC, - Graphics Card: Nvidia 7150M
Processor: AMD Athlon(tm) 64 X2 Dual-Core Processor TK-57
Wireless Card: AR5006EG 802.11 b/g Wireless PCI Express Adapter w/ ndiswrapper & 64bit windows driver
major_rocks is offline   Reply With Quote
Old April 26th, 2008   #20
Pinoy915
Just Give Me the Beans!
 
Join Date: Aug 2005
Location: Texas, US
Beans: 78
Ubuntu 9.04 Jaunty Jackalope
Send a message via AIM to Pinoy915 Send a message via MSN to Pinoy915 Send a message via Yahoo to Pinoy915
Re: Atheros AR5007 not working on 8.04 Hardy

Quote:
Originally Posted by major_rocks View Post
nice job pinoy... I followed those same intructions for Gutsy, however it seems as though they dont quite work for me in Hardy...... i followed your abbreviated instructions, and the card see's my wireless network as well as others but it will not connect.

Did you by chance blacklist "ath_pci" ?

what you have posted should work for me, for some reason something small is different from Gutsy to Hardy.
Oh man, sorry for that. I forgot to add that. Yes, I did blacklist it so the driver that came with Ubuntu did not load and uses ndiswrapper instead.
Pinoy915 is offline   Reply With Quote

Bookmarks

Tags
ar5007, atheros, driver, hardy, network, wireless

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

Forum Jump


All times are GMT -4. The time now is 02:29 PM.


vBulletin ©2000 - 2010, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. bilberry