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

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

Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.
Ubuntu 9.10 is out!!!

When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu.

The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely.

Hardware & Laptops
Problems with hardware & laptops not being detected or supported during or after install.

 
 
Thread Tools Display Modes
Old August 16th, 2007   #1
ntlam
Gee! These Aren't Roasted!
 
ntlam's Avatar
 
Join Date: Jul 2007
Beans: 160
atheros ar5007eg on satellite u305-5077

Hi all

I got problem with my wireless on my Toshiba Satellite U305-5077. Even I tried many times with solutions in several threads I got no success.
As I looked at Windows, the information about my card is: Atheros Ar5007EG.
Some reports said that madwifi doesn't support AR5007EG (it supports most of atheros chips but not this one).
I tried using Ndiswrapper and used "net5211.inf" from XP driver (32 bit) as it is suggested in some threads. I failed ...
Here is what I did:

Step 1: Disable ath_pci

sudo rmmod ath_pci
sudo gedit /etc/modprobe.d/blacklist-common

add the following line at the end of the file

blacklist ath_pci

Save and close

Restart computer

step 2. remove old ndiswrapper by using synaptics

Step 3: Build essentials
Use the synaptic package manager
Install the package called "build-essential" in the group called "Development"
But I already got it installed

Step 4: Install Ndiswrapper.

Go to http://sourceforge.net/project/showf...group_id=93482
Download ndiswrapper-1.47.tar.gz to folder /home/username

Code:

cd /home/username/
sudo tar xvzf ndiswrapper-1.47.tar.gz
cd /home/username/ndiswrapper-1.47/
sudo make
sudo make install

Step 5: Load drivers with ndiswrapper.
sudo ndiswrapper -i net5211.inf

installing net5211 ...

forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
forcing parameter MapRegisters from 256 to 64
........ a lot of lines like above...

then:
sudo ndiswrapper -l
net5211 : driver installed
device (168C:001C) present (alternate driver: ath_pci)

Step 6: Load ndiswrapper and check if it worked
sudo modprobe ndiswrapper

Check it:
iwconfig
lo no wireless extensions.

eth0 no wireless extensions.

Then I did:

sudo ndiswrapper -m

After reboot I got no wireless.

I asked for help in some threads but haven't got answer yet. Hope I get some idea here. Thanks
ntlam is offline  
Old August 16th, 2007   #2
ntlam
Gee! These Aren't Roasted!
 
ntlam's Avatar
 
Join Date: Jul 2007
Beans: 160
Re: atheros ar5007eg on satellite u305-5077

Never mind. I got it work.

Step 1:
Because I tried Madwifi before so I had to remove it:
Code:
cd /lib/modules/$(uname -r)
sudo rm -rf net
sudo rm -rf madwifi
sudo rm -rf madwifi-ng

Then:
cd /to your directory of madwifi-version, do the following:
sudo make clean (you can do this step again and again to make sure madwifi is removed completely)

Code: (Check for the existence of any wlan, ath_hal, ath_pci modules)
lsmod

Remove existing loaded modules:
sudo rmmod (moduleName)

reboot

Step 2: (you might not have to do this step if you haven't installed ndiswrapper)

remove the installed ndiswrapper by doing:

cd /directory of ndiswrapper-1.47/

sudo rmmod ndiswrapper
sudo make distclean
sudo make -C driver clean

Go to Places-->seach for files, seach ndiswrapper, you will see a list of ndiswrapper files and folders. In the command line go to each location to delete ndiswrapper either with sudo rm (for files) or sudo rm -r (for folders).

Step 3:

Then go back to directory of ndiswrapper-1.47/
sudo make
sudo make install

Step 4:

And finally install the driver:

cd /directory of XP driver/

sudo ndiswrapper -i net5211.inf (your file would be different, something like file.inf)
ndiswrapper -l ==> if u see this message: "net5211: driver installed device (168C:001C (not same with ur )

sudo modprobe ndiswrapper

dmesg (show that the card installed)
iwlist wlan0 scan (will show all APs arround you)

sudo ndiswrapper -m

sudo reboot

And the wireless should work.

Last edited by ntlam; September 28th, 2007 at 09:05 PM..
ntlam is offline  
Old August 17th, 2007   #3
jediackbar
First Cup of Ubuntu
 
Join Date: Aug 2007
Beans: 9
Re: atheros ar5007eg on satellite u305-5077

So if I haven't tried anything yet, just follow steps 1-6 on the first post? I would also skip step 2? In step 3, what is the 'build essentials...'?
jediackbar is offline  
Old August 17th, 2007   #4
ntlam
Gee! These Aren't Roasted!
 
ntlam's Avatar
 
Join Date: Jul 2007
Beans: 160
Re: atheros ar5007eg on satellite u305-5077

ndiswrapper was installed by default so you need to remove it and get the newest one. But the old one might work...you can try. "Build essentials" means you get everything necessary for it to work..
ntlam is offline  
Old August 17th, 2007   #5
jediackbar
First Cup of Ubuntu
 
Join Date: Aug 2007
Beans: 9
Re: atheros ar5007eg on satellite u305-5077

I followed your directions and I don't thing it worked. I must have messed something up. I installed ndiswrapper and then installed the XP driver, but still nothing. When I click on the network connection on the taskbar all I see is wired network and modem.

"step 2. remove old ndiswrapper by using synaptics" - How do you do that?

"Step 3: Build essentials
Use the synaptic package manager
Install the package called "build-essential" in the group called "Development"
But I already got it installed"

Again, what or how?

Last edited by jediackbar; August 17th, 2007 at 05:08 PM..
jediackbar is offline  
Old August 17th, 2007   #6
ntlam
Gee! These Aren't Roasted!
 
ntlam's Avatar
 
Join Date: Jul 2007
Beans: 160
Re: atheros ar5007eg on satellite u305-5077

go to system-->administration-->synaptic package manager--->search for what u need..
ntlam is offline  
Old August 17th, 2007   #7
jediackbar
First Cup of Ubuntu
 
Join Date: Aug 2007
Beans: 9
Re: atheros ar5007eg on satellite u305-5077

It still doesn't work. I don't see any wireless connection under the network screen. I think that my card still isn't working.

"Step 5: Load drivers with ndiswrapper.
sudo ndiswrapper -i net5211.inf"

I get that the 'driver is already installed'
jediackbar is offline  
Old August 18th, 2007   #8
ntlam
Gee! These Aren't Roasted!
 
ntlam's Avatar
 
Join Date: Jul 2007
Beans: 160
Re: atheros ar5007eg on satellite u305-5077

you have to remove the driver and ndiswrapper then install fresh ones
ntlam is offline  
Old August 18th, 2007   #9
ntlam
Gee! These Aren't Roasted!
 
ntlam's Avatar
 
Join Date: Jul 2007
Beans: 160
Re: atheros ar5007eg on satellite u305-5077

My post #2 tells you how to remove them
ntlam is offline  
Old August 18th, 2007   #10
tturrisi
Fresh Brewed Ubuntu
 
tturrisi's Avatar
 
Join Date: Jun 2006
Location: Fairfax, VA
Beans: 1,476
Ubuntu 6.06
Re: atheros ar5007eg on satellite u305-5077

The issue w/ that chipset is not a linux, ubuntu or madwifi issue, it's an issue w/ HAL.
http://madwifi.org/wiki/Compatibilit...therosAR5007EG
tturrisi is offline  
 

Bookmarks

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 05:12 AM.


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