Erick92
(usa Ubuntu)
Enviado em 24/07/2008 - 17:03h
Obrigado pelo interesse, minha placa é uma Atheros AR5007. Estou com um novo login, porque depois do novo tema não consegui logar no outro mais, mas já consegui resolver o problema depois desta dica:
Oh man this made me sooo happy when I found this!I just have to share
I can't take any credit for this how to but I have tried it out and it works great...no more ndiswrapper for this puppy
You can see all the details regarding the lack of support for Atheros on 64bit linux here
http://madwifi.org/ticket/1679 and here
http://madwifi.org/ticket/1192
You will need an internet connection so get wired up if need be.
Lets give it a go.
1: First off be sure the build-essential package is installed
Code:
sudo apt-get install build-essential
2: You will need the linux-restricted-modules package installed to be able to compile the driver
Code:
sudo apt-get install linux-restricted-modules-$(uname -r)
3: Also install subversion
Code:
sudo apt-get install subversion
NOTE:If you have been using ndiswrapper like I was you need to disable/remove it
I recommend doing what I did and run the first command in section 4 before removing ndiswrapper that way you can avoid hooking up to a wired network if your wireless is functional using ndiswrapper
Code:
sudo ndiswrapper -e net5211
sudo modprobe -r ndiswrapper
sudo apt-get remove --purge ndiswrapper-common ndiswrapper-utils ndisgtk
Also run
Code:
gksudo gedit /etc/modprobe.d/blacklist
Remove any references to ath_pci and ath_hal
* Before the next steps go to System ->Administration ->Hardware Drivers and make sure both Atheros drivers are disabled and reboot the system if they were not.
4: Get the files and install the driver
Code:
svn co
https://svn.madwifi.org/madwifi/branches/madwifi-hal-0.10.5.6
cd ~/madwifi-hal-0.10.5.6
make
sudo make install
sudo depmod -ae
sudo modprobe ath_pci
echo ath_hal | sudo tee -a /etc/modules
echo ath_pci | sudo tee -a /etc/modules
5: Finally go to System ->Administration ->Hardware Drivers and reenable the Atheros drivers and reboot the system.
One thing I should add is you will need to repeat this procedure whenever you get a kernel update.I have just kept the downloaded packages on my system and after booting into a new kernel I do:
Code:
cd ~/madwifi-hal-0.10.5.6
make clean
sudo make install
Reboot and I am up and running again.
Hopefully this makes your day like it did mine!
Note:
If everything installs and loads properly but you cannot connect to any networks you probably need to configure your network properly.Try browsing through here
http://madwifi.org/wiki/UserDocs/FirstTimeHowTo for assistance.