Connecting Ubuntu 8.10 with Atheros Wireless Driver
This setting was a major nuisance to me. I search all over the net for a working solutions. From Madwifi to Ndiswrapper but still, nothing works on my Presario C700 unit. I even fully updated Intrepid release. Thanks for that, the system hit by kernel panic and I need to reinstall the whole OS again. But the working solution is just under my nose. Read on...
Well, not really my nose, it's documented in the Ubuntu help page, under the WifiDocsDriverAtheros topic.
My unit preference is Compaq Presario C700 with Atheros AR242x chip and Ubuntu 8.10 (fresh install). I connect to internet through ethernet cable (wireless is disable duh). If you have similar setup and I assume you know how to set your repository, this might work. This is how I done it:
Hopefully by now your unit is able to detect and connect to any wireless connection. Good luck and remember patient is a virtue.
sudo apt-get install build-essential
System > Administration > Hardware Drivers and click the "deactivate" button.
sudo reboot
sudo apt-get install linux-backports-modules-intrepid-generic
sudo reboot
sudo gedit /etc/modprobe.d/blacklist
and add the following lines to the bottom of the file:
blacklist ath_hal
blacklist ath_pci
save the blacklist file
sudo reboot
grep -r "ath5k" /etc/modprobe.d/
You just need to comment lines that have "blacklist ath5k" and then run this command:
sudo reboot



3 comments:
ahahha .. welcome to real world :D
"You just need to comment lines that have "blacklist ath5k" "... what does that mean? I get "/etc/modprobe.d/madwifi:## ath5k (mac80211)
/etc/modprobe.d/madwifi:blacklist ath5k" when i type in "grep -r "ath5k" /etc/modprobe.d/"
so what do i do now?
so all you have to do now is run this command in terminal:
sudo gedit /etc/modprobe.d/madwifi
search for "blacklist ath5k" in that file and comment it, like #blacklist ath5k
save and reboot
Post a Comment